/*
 * GIXTOH Consolidated — AUTUM av5 verticals
 * Estudios / Services — rebuilt for 1600 × 2000 source imagery
 * Haxter Corporation Suites Enterprise
 */

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

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

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

body.gix-services-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 15px;
    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);
}

.gix-text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 5px;
    color: var(--gix-blue);
    border-bottom: 1px solid currentColor;
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.35;
}

.gix-text-link span {
    transition: transform 160ms ease;
}

.gix-text-link:hover span,
.gix-text-link:focus-visible span {
    transform: translate(3px, -3px);
}

/* 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;
    border: 0;
    color: currentColor;
    background: transparent;
}

.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-gray-light);
    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 */

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

.gxs-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(370px, 0.68fr);
    gap: clamp(72px, 10vw, 150px);
    align-items: start;
}

.gxs-hero__heading h1 {
    max-width: 820px;
    margin: 0;
    color: var(--gix-black);
    font-size: clamp(3.1rem, 5.1vw, 5.75rem);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.02;
    text-wrap: balance;
}

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

.gxs-hero__copy p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.8;
}

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

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

.gxs-hero__principles {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: clamp(70px, 8vw, 112px);
    border-top: 1px solid var(--gix-gray-light);
    border-bottom: 1px solid var(--gix-gray-light);
}

.gxs-hero__principles > div {
    min-height: 172px;
    padding: 30px 34px 34px 0;
    border-right: 1px solid var(--gix-gray-light);
}

.gxs-hero__principles > div + div {
    padding-left: 34px;
}

.gxs-hero__principles > div:last-child {
    border-right: 0;
}

.gxs-hero__principles span {
    display: block;
    margin-bottom: 28px;
    color: var(--gix-blue);
    font-size: 0.73rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.gxs-hero__principles strong {
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
}

.gxs-hero__principles p {
    margin: 7px 0 0;
    color: #4b515c;
    font-size: 0.92rem;
}

/* Study index */

.gxs-study-nav {
    position: sticky;
    top: var(--gix-header-height);
    z-index: 900;
    height: var(--gix-study-nav-height);
    color: var(--gix-black);
    background: rgba(242, 244, 246, 0.97);
    border-top: 1px solid var(--gix-gray-light);
    border-bottom: 1px solid var(--gix-gray-light);
    backdrop-filter: blur(10px);
}

.gxs-study-nav__inner {
    height: 100%;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.gxs-study-nav a {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 18px;
    border-right: 1px solid var(--gix-gray-light);
    font-size: 0.77rem;
    font-weight: 600;
    line-height: 1.25;
}

.gxs-study-nav a:first-child {
    padding-left: 0;
}

.gxs-study-nav a:last-child {
    padding-right: 0;
    border-right: 0;
}

.gxs-study-nav a span {
    color: var(--gix-blue);
    font-size: 0.66rem;
    letter-spacing: 0.08em;
}

.gxs-study-nav a:hover,
.gxs-study-nav a:focus-visible {
    color: var(--gix-blue);
}

/* Study chapters */

.gxs-catalogue {
    background: var(--gix-white);
}

.gxs-study-chapter {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    border-bottom: 1px solid var(--gix-gray-light);
    scroll-margin-top: calc(var(--gix-header-height) + var(--gix-study-nav-height));
}

.gxs-study-chapter:nth-child(even) {
    background: var(--gix-surface);
}

.gxs-study-chapter__media {
    width: 100%;
    aspect-ratio: 4 / 5;
    align-self: start;
    margin: 0;
    overflow: hidden;
    background: var(--gix-white);
}

.gxs-study-chapter__media img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center center;
}

.gxs-study-chapter__content {
    max-width: 720px;
    padding: clamp(70px, 7.5vw, 124px) clamp(56px, 7vw, 118px);
}

.gxs-study-chapter--reverse .gxs-study-chapter__media {
    order: 2;
    align-self: start;
}

.gxs-study-chapter--reverse .gxs-study-chapter__content {
    order: 1;
    justify-self: end;
}

.gxs-study-chapter__number,
.gxs-study-chapter__descriptor {
    margin: 0;
    color: var(--gix-blue);
    font-size: 0.73rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.gxs-study-chapter__descriptor {
    margin-top: 17px;
    color: #575e69;
    letter-spacing: 0.08em;
}

.gxs-study-chapter h2 {
    margin: 12px 0 0;
    color: var(--gix-black);
    font-size: clamp(2.65rem, 4vw, 4.8rem);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.02;
    text-wrap: balance;
}

.gxs-study-chapter__lead {
    margin: 34px 0 0;
    color: var(--gix-ink);
    font-size: clamp(1.17rem, 1.45vw, 1.43rem);
    font-weight: 500;
    line-height: 1.55;
}

.gxs-study-chapter__text {
    margin: 24px 0 0;
    color: #353b45;
    font-size: 0.98rem;
    line-height: 1.8;
}

.gxs-study-chapter__purpose {
    margin-top: 36px;
    padding: 22px 0;
    border-top: 1px solid #adb3bc;
    border-bottom: 1px solid #adb3bc;
}

.gxs-study-chapter__purpose span,
.gxs-study-chapter__applications > p {
    display: block;
    margin: 0;
    color: var(--gix-blue);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.gxs-study-chapter__purpose p {
    margin: 9px 0 0;
    color: var(--gix-black);
    font-weight: 500;
    line-height: 1.55;
}

.gxs-study-chapter__applications {
    margin-top: 27px;
}

.gxs-study-chapter__applications ul {
    margin: 14px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    list-style: none;
    border-top: 1px solid var(--gix-gray-light);
}

.gxs-study-chapter__applications li {
    min-height: 58px;
    display: flex;
    align-items: center;
    padding: 10px 14px 10px 0;
    border-bottom: 1px solid var(--gix-gray-light);
    font-size: 0.83rem;
    font-weight: 500;
    line-height: 1.35;
}

.gxs-study-chapter__applications li:nth-child(odd) {
    border-right: 1px solid var(--gix-gray-light);
}

.gxs-study-chapter__applications li:nth-child(even) {
    padding-left: 14px;
}

.gxs-study-chapter .gix-text-link {
    margin-top: 32px;
}

/* Integration */

.gxs-integration {
    padding: clamp(90px, 9vw, 150px) 0;
    color: var(--gix-white);
    background: var(--gix-blue-night);
}

.gxs-integration__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
    gap: clamp(60px, 8vw, 120px);
    align-items: end;
}

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

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

.gxs-integration__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;
}

.gxs-integration__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: clamp(64px, 7vw, 100px);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.gxs-integration__grid article {
    min-height: 250px;
    padding: 36px 34px 42px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.gxs-integration__grid article + article {
    padding-left: 34px;
}

.gxs-integration__grid article:last-child {
    border-right: 0;
}

.gxs-integration__grid h3 {
    margin: 0;
    font-size: clamp(1.45rem, 2vw, 2rem);
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.gxs-integration__grid p {
    margin: 42px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.94rem;
    line-height: 1.75;
}

/* Process */

.gxs-process {
    padding: clamp(88px, 9vw, 146px) 0;
    background: var(--gix-white);
}

.gxs-section-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
    gap: clamp(60px, 8vw, 112px);
    align-items: end;
}

.gxs-section-head h2 {
    max-width: 850px;
    margin: 0;
    color: var(--gix-black);
    font-size: clamp(2.35rem, 3.7vw, 4.15rem);
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 1.07;
    text-wrap: balance;
}

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

.gxs-process__steps {
    margin: clamp(58px, 6vw, 88px) 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    list-style: none;
    border-top: 1px solid var(--gix-black);
}

.gxs-process__steps li {
    min-height: 285px;
    padding: 28px 24px 34px 0;
    border-right: 1px solid var(--gix-gray-light);
}

.gxs-process__steps li + li {
    padding-left: 24px;
}

.gxs-process__steps li:last-child {
    border-right: 0;
}

.gxs-process__steps span {
    color: var(--gix-blue);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.gxs-process__steps h3 {
    margin: 75px 0 0;
    font-size: clamp(1.25rem, 1.7vw, 1.7rem);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.15;
}

.gxs-process__steps p {
    margin: 18px 0 0;
    color: #4b525d;
    font-size: 0.88rem;
    line-height: 1.65;
}

/* Sectors */

.gxs-sectors {
    padding: clamp(76px, 7vw, 112px) 0;
    background: var(--gix-surface);
    border-top: 1px solid var(--gix-gray-light);
    border-bottom: 1px solid var(--gix-gray-light);
}

.gxs-sectors__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
    gap: clamp(70px, 9vw, 140px);
    align-items: end;
}

.gxs-sectors h2 {
    max-width: 680px;
    margin: 0;
    color: var(--gix-black);
    font-size: clamp(2.3rem, 3.6vw, 4rem);
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 1.07;
}

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

.gxs-sectors__list span {
    min-height: 72px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--gix-gray-light);
    font-size: 1rem;
    font-weight: 500;
}

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

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

/* Contact */

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

.gxs-contact__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.48fr);
    gap: clamp(70px, 10vw, 160px);
    align-items: end;
}

.gxs-contact h2 {
    max-width: 820px;
    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;
}

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

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

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

.gxs-contact__link span {
    transition: transform 160ms ease;
}

.gxs-contact__link:hover span,
.gxs-contact__link:focus-visible span {
    transform: translateX(5px);
}

/* Footer */

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

.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-gray-light);
    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;
    }

    .gxs-study-chapter {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gxs-study-chapter__content {
        padding: 70px 58px;
    }
}

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

    .gxs-study-nav__inner {
        width: 100%;
        overflow-x: auto;
        scroll-snap-type: x proximity;
    }

    .gxs-study-nav a {
        min-width: 180px;
        scroll-snap-align: start;
    }

    .gxs-study-nav a:first-child {
        padding-left: 24px;
    }

    .gxs-study-nav a:last-child {
        padding-right: 24px;
    }

    .gxs-study-chapter,
    .gxs-study-chapter--reverse {
        grid-template-columns: 1fr;
    }

    .gxs-study-chapter__media,
    .gxs-study-chapter--reverse .gxs-study-chapter__media {
        order: 1;
        width: 100%;
        aspect-ratio: 4 / 5;
        align-self: start;
        justify-self: stretch;
    }

    .gxs-study-chapter__content,
    .gxs-study-chapter--reverse .gxs-study-chapter__content {
        width: min(calc(100% - 64px), var(--gix-shell));
        max-width: none;
        order: 2;
        justify-self: center;
        padding: 72px 0 88px;
    }

    .gxs-study-chapter__media img {
        width: 100%;
        height: 100%;
    }

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

    .gxs-process__steps li:nth-child(3) {
        border-right: 0;
    }

    .gxs-process__steps li:nth-child(-n + 3) {
        border-bottom: 1px solid var(--gix-gray-light);
    }

    .gxs-process__steps li:nth-child(4) {
        padding-left: 0;
    }

    .gxs-process__steps li:nth-child(5) {
        border-right: 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-gray-light);
    }
}

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

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

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

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

    .gxs-hero__grid {
        gap: 58px;
    }

    .gxs-hero__copy {
        max-width: 760px;
    }

    .gxs-integration__head,
    .gxs-section-head,
    .gxs-contact__grid {
        gap: 48px;
    }

    .gxs-integration__head .gix-kicker {
        grid-column: auto;
        margin-bottom: 0;
    }

    .gxs-integration__head > p,
    .gxs-section-head > p,
    .gxs-contact__grid > div:last-child {
        max-width: 720px;
    }

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

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

    .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;
    }

    .gxs-hero__heading h1 {
        font-size: clamp(2.85rem, 12.5vw, 4.6rem);
        letter-spacing: -0.035em;
    }

    .gxs-hero__principles {
        grid-template-columns: 1fr;
    }

    .gxs-hero__principles > div,
    .gxs-hero__principles > div + div {
        min-height: 0;
        padding: 26px 0 30px;
        border-right: 0;
        border-bottom: 1px solid var(--gix-gray-light);
    }

    .gxs-hero__principles > div:last-child {
        border-bottom: 0;
    }

    .gxs-hero__principles span {
        margin-bottom: 18px;
    }

    .gxs-study-chapter__content,
    .gxs-study-chapter--reverse .gxs-study-chapter__content {
        width: calc(100% - 36px);
        padding: 58px 0 72px;
    }

    .gxs-study-chapter h2 {
        font-size: clamp(2.4rem, 11vw, 3.7rem);
    }

    .gxs-study-chapter__applications ul {
        grid-template-columns: 1fr;
    }

    .gxs-study-chapter__applications li,
    .gxs-study-chapter__applications li:nth-child(odd),
    .gxs-study-chapter__applications li:nth-child(even) {
        padding: 12px 0;
        border-right: 0;
    }

    .gxs-integration__grid {
        grid-template-columns: 1fr;
    }

    .gxs-integration__grid article,
    .gxs-integration__grid article + article {
        min-height: 0;
        padding: 30px 0 36px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }

    .gxs-integration__grid article:last-child {
        border-bottom: 0;
    }

    .gxs-integration__grid p {
        margin-top: 20px;
    }

    .gxs-process__steps {
        grid-template-columns: 1fr;
    }

    .gxs-process__steps li,
    .gxs-process__steps li + li,
    .gxs-process__steps li:nth-child(4) {
        min-height: 0;
        padding: 26px 0 34px;
        border-right: 0;
        border-bottom: 1px solid var(--gix-gray-light);
    }

    .gxs-process__steps li:last-child {
        border-bottom: 0;
    }

    .gxs-process__steps h3 {
        margin-top: 34px;
    }

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

    .gxs-sectors__list span,
    .gxs-sectors__list span:nth-child(odd),
    .gxs-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-gray-light);
    }

    .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;
    }

    .gxs-integration__head h2,
    .gxs-contact h2 {
        font-size: clamp(2.55rem, 12vw, 4rem);
    }

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

    .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-gray-light);
    }
}

@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;
    }
}
