/*
 * GIXTOH Consolidated — Enterprise Home
 * All-new production stylesheet
 * Haxter Corporation Suites Enterprise
 */

:root {
    --gix-blue: #002060;
    --gix-blue-deep: #00163f;
    --gix-blue-night: #06142c;
    --gix-green: #3f8b2c;
    --gix-black: #080b11;
    --gix-ink: #151923;
    --gix-gray: #5d6470;
    --gix-gray-light: #d9dde4;
    --gix-surface: #f3f5f7;
    --gix-white: #ffffff;
    --gix-shell: 1240px;
    --gix-header-height: 100px;
    --gix-font-display: "Montserrat", Arial, sans-serif;
    --gix-font-body: "Open Sans", Arial, sans-serif;
}

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

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

body.gix-page {
    margin: 0;
    min-width: 320px;
    color: var(--gix-black);
    background: var(--gix-white);
    font-family: var(--gix-font-body);
    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,
textarea {
    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 20px;
    color: var(--gix-blue);
    font-family: var(--gix-font-display);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1.3;
    text-transform: uppercase;
}

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

.gix-button {
    display: inline-flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border: 1px solid transparent;
    font-family: var(--gix-font-display);
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1;
    transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.gix-button--solid {
    color: var(--gix-white);
    background: var(--gix-blue);
}

.gix-button--solid:hover,
.gix-button--solid:focus-visible {
    background: var(--gix-blue-deep);
}

.gix-button--ghost {
    color: var(--gix-white);
    border-color: rgba(255, 255, 255, 0.72);
    background: rgba(2, 18, 43, 0.16);
}

.gix-button--ghost:hover,
.gix-button--ghost:focus-visible {
    color: var(--gix-blue);
    background: var(--gix-white);
    border-color: var(--gix-white);
}

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

.gix-button--white:hover,
.gix-button--white:focus-visible {
    color: var(--gix-white);
    background: transparent;
    border-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-family: var(--gix-font-display);
    font-size: 0.88rem;
    font-weight: 700;
    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-white);
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: color 200ms ease, background 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.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-family: var(--gix-font-display);
    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 {
    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;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.64);
    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-header--solid {
    color: var(--gix-black);
    background: rgba(255, 255, 255, 0.98);
    border-color: #e8eaf0;
    box-shadow: 0 8px 24px rgba(0, 25, 72, 0.07);
    backdrop-filter: blur(12px);
}

.gix-header--solid .gix-search-trigger {
    color: var(--gix-blue);
    border-color: #d8deeb;
}

.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-family: var(--gix-font-display);
    font-size: clamp(1.55rem, 6vw, 2.2rem);
    font-weight: 700;
}

.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-family: var(--gix-font-display);
    font-size: 1.25rem;
    font-weight: 700;
}

.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-family: var(--gix-font-display);
    font-weight: 700;
}

/* Hero */

.gix-hero {
    position: relative;
    min-height: min(920px, 100svh);
    display: flex;
    align-items: flex-end;
    isolation: isolate;
    overflow: hidden;
    color: var(--gix-white);
    background: var(--gix-blue-deep);
}

.gix-hero__image,
.gix-hero__wash {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.gix-hero__image {
    z-index: -3;
    object-fit: cover;
    object-position: center;
}

.gix-hero__wash {
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(0, 29, 81, 0.92) 0%, rgba(0, 37, 78, 0.68) 38%, rgba(42, 122, 22, 0.28) 72%, rgba(42, 122, 22, 0.12) 100%),
        linear-gradient(0deg, rgba(0, 15, 41, 0.62) 0%, rgba(0, 15, 41, 0) 48%);
}

.gix-hero__content {
    padding-top: calc(var(--gix-header-height) + 80px);
    padding-bottom: clamp(78px, 8vh, 124px);
}

.gix-hero h1 {
    max-width: 1010px;
    margin: 0;
    font-family: var(--gix-font-display);
    font-size: clamp(3.35rem, 6.15vw, 6.8rem);
    font-weight: 800;
    letter-spacing: -0.065em;
    line-height: 0.98;
    text-wrap: balance;
}

.gix-hero__lead {
    max-width: 850px;
    margin: 32px 0 0;
    font-size: clamp(1.05rem, 1.35vw, 1.35rem);
    line-height: 1.75;
}

.gix-hero__buttons {
    margin-top: 38px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* Metrics */

.gix-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    color: var(--gix-blue);
    background: var(--gix-white);
    border-bottom: 1px solid var(--gix-gray-light);
}

.gix-metric {
    min-height: 188px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px clamp(24px, 3vw, 48px);
    border-right: 1px solid var(--gix-gray-light);
}

.gix-metric:last-child {
    border-right: 0;
}

.gix-metric strong {
    font-family: var(--gix-font-display);
    font-size: clamp(2.8rem, 4.8vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.065em;
    line-height: 0.92;
}

.gix-metric span {
    margin-top: 16px;
    color: #323a4a;
    font-family: var(--gix-font-display);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    line-height: 1.4;
    text-transform: uppercase;
}

/* Editorial introduction */

.gix-intro {
    padding: clamp(100px, 11vw, 178px) 0;
    background: var(--gix-white);
}

.gix-intro__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.72fr);
    gap: clamp(70px, 10vw, 150px);
    align-items: start;
}

.gix-intro__heading h2,
.gix-section-head h2,
.gix-evidence__content h2,
.gix-trust__head h2,
.gix-solar__content h2,
.gix-contact__intro h2 {
    margin: 0;
    font-family: var(--gix-font-display);
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 1.03;
    text-wrap: balance;
}

.gix-intro__heading h2 {
    max-width: 780px;
    color: var(--gix-blue);
    font-size: clamp(3rem, 5.25vw, 5.8rem);
}

.gix-intro__copy {
    padding-top: 38px;
    color: var(--gix-black);
    border-top: 2px solid var(--gix-blue);
}

.gix-intro__copy p {
    margin: 0 0 22px;
    font-size: 1.04rem;
    line-height: 1.85;
}

.gix-intro__copy .gix-intro__statement {
    margin-bottom: 34px;
    font-family: var(--gix-font-display);
    font-size: clamp(1.3rem, 1.8vw, 1.75rem);
    font-weight: 600;
    line-height: 1.45;
}

.gix-intro__copy strong {
    color: var(--gix-blue);
}

.gix-intro__copy .gix-text-link {
    margin-top: 12px;
}

/* Shared section heading */

.gix-section-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
    gap: 80px;
    align-items: end;
    margin-bottom: clamp(56px, 7vw, 92px);
}

.gix-section-head h2 {
    max-width: 850px;
    color: var(--gix-blue);
    font-size: clamp(2.5rem, 4.15vw, 4.6rem);
}

.gix-section-head > p {
    margin: 0;
    padding-top: 26px;
    color: var(--gix-black);
    border-top: 1px solid currentColor;
    font-size: 1.02rem;
    line-height: 1.75;
}

.gix-section-head--light h2,
.gix-section-head--light > p {
    color: var(--gix-white);
}

/* Studies */

.gix-studies {
    padding: clamp(96px, 10vw, 160px) 0;
    background: var(--gix-surface);
}

.gix-studies__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid #bfc5ce;
    border-left: 1px solid #bfc5ce;
}

.gix-study {
    min-width: 0;
    background: var(--gix-white);
    border-right: 1px solid #bfc5ce;
    border-bottom: 1px solid #bfc5ce;
}

.gix-study__image {
    display: block;
    height: clamp(220px, 26vw, 350px);
    overflow: hidden;
    background: #dfe3e8;
}

.gix-study__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.85) contrast(1.03);
    transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 300ms ease;
}

.gix-study:hover .gix-study__image img {
    transform: scale(1.035);
    filter: saturate(1) contrast(1.03);
}

.gix-study__body {
    position: relative;
    min-height: 365px;
    padding: clamp(32px, 4vw, 54px);
}

.gix-study__number {
    display: block;
    margin-bottom: 34px;
    color: var(--gix-blue);
    font-family: var(--gix-font-display);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.gix-study h3 {
    max-width: 560px;
    margin: 0;
    color: var(--gix-blue);
    font-family: var(--gix-font-display);
    font-size: clamp(1.7rem, 2.5vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.08;
}

.gix-study p {
    max-width: 600px;
    margin: 24px 0 34px;
    color: var(--gix-black);
    font-size: 1rem;
    line-height: 1.75;
}

/* Sectors */

.gix-sectors {
    padding-top: clamp(96px, 10vw, 160px);
    color: var(--gix-white);
    background: var(--gix-blue-night);
}

.gix-sectors__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.32);
}

.gix-sector {
    position: relative;
    min-height: clamp(480px, 48vw, 720px);
    isolation: isolate;
    overflow: hidden;
    border-right: 1px solid rgba(255, 255, 255, 0.32);
}

.gix-sector:last-child {
    border-right: 0;
}

.gix-sector > img,
.gix-sector__shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.gix-sector > img {
    z-index: -2;
    object-fit: cover;
    transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.gix-sector__shade {
    z-index: -1;
    background: linear-gradient(0deg, rgba(0, 15, 43, 0.92) 0%, rgba(0, 22, 58, 0.15) 72%);
}

.gix-sector__content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: clamp(28px, 3vw, 48px);
}

.gix-sector h3 {
    margin: 0;
    font-family: var(--gix-font-display);
    font-size: clamp(1.7rem, 2.2vw, 2.7rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.08;
}

.gix-sector p {
    max-width: 320px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.65;
}

.gix-sector:hover > img {
    transform: scale(1.045);
}

/* Evidence */

.gix-evidence {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(460px, 0.8fr);
    min-height: 760px;
    background: var(--gix-white);
}

.gix-evidence__media {
    min-height: 680px;
    margin: 0;
    overflow: hidden;
    background: #dce1e7;
}

.gix-evidence__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.gix-evidence__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(64px, 7vw, 118px);
}

.gix-evidence__content h2 {
    color: var(--gix-blue);
    font-size: clamp(2.6rem, 4vw, 4.75rem);
}

.gix-evidence__content > p:not(.gix-kicker) {
    max-width: 600px;
    margin: 30px 0 0;
    color: var(--gix-black);
    font-size: 1.03rem;
    line-height: 1.8;
}

.gix-evidence__content .gix-text-link {
    margin-top: 38px;
}

/* Method */

.gix-method {
    padding: clamp(96px, 10vw, 160px) 0;
    background: var(--gix-white);
    border-top: 1px solid var(--gix-gray-light);
}

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

.gix-method-step {
    min-height: 330px;
    padding: 34px 30px 40px 0;
    border-right: 1px solid var(--gix-gray-light);
}

.gix-method-step + .gix-method-step {
    padding-left: 30px;
}

.gix-method-step:last-child {
    border-right: 0;
}

.gix-method-step > span {
    display: block;
    color: var(--gix-blue);
    font-family: var(--gix-font-display);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.gix-method-step h3 {
    margin: 76px 0 0;
    color: var(--gix-blue);
    font-family: var(--gix-font-display);
    font-size: clamp(1.45rem, 2vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.1;
}

.gix-method-step p {
    margin: 22px 0 0;
    color: var(--gix-black);
    line-height: 1.75;
}

/* Trust */

.gix-trust {
    padding: clamp(96px, 10vw, 160px) 0;
    color: var(--gix-black);
    background: var(--gix-surface);
}

.gix-trust__head {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.45fr);
    gap: 80px;
    align-items: end;
}

.gix-trust__head .gix-kicker {
    grid-column: 1 / -1;
    margin-bottom: -48px;
}

.gix-trust__head h2 {
    max-width: 820px;
    color: var(--gix-blue);
    font-size: clamp(2.6rem, 4.15vw, 4.7rem);
}

.gix-trust__head > p {
    margin: 0;
    padding-top: 24px;
    border-top: 1px solid var(--gix-black);
    line-height: 1.8;
}

.gix-client-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 88px;
    border-top: 1px solid #bfc5ce;
    border-left: 1px solid #bfc5ce;
}

.gix-client-list span {
    min-height: 128px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    color: var(--gix-blue);
    background: var(--gix-white);
    border-right: 1px solid #bfc5ce;
    border-bottom: 1px solid #bfc5ce;
    font-family: var(--gix-font-display);
    font-size: clamp(1rem, 1.35vw, 1.35rem);
    font-weight: 800;
    text-align: center;
}

.gix-trust__note {
    max-width: 1000px;
    margin: 28px 0 0;
    color: #626976;
    font-size: 0.72rem;
    line-height: 1.65;
}

/* Solar */

.gix-solar {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: flex-end;
    isolation: isolate;
    overflow: hidden;
    color: var(--gix-white);
    background: var(--gix-blue-deep);
}

.gix-solar > img,
.gix-solar__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.gix-solar > img {
    z-index: -2;
    object-fit: cover;
}

.gix-solar__overlay {
    z-index: -1;
    background: linear-gradient(90deg, rgba(0, 18, 57, 0.92) 0%, rgba(0, 24, 60, 0.68) 45%, rgba(0, 20, 50, 0.12) 82%);
}

.gix-solar__content {
    padding-top: 100px;
    padding-bottom: 100px;
}

.gix-solar__content h2 {
    max-width: 930px;
    font-size: clamp(3rem, 5.2vw, 6rem);
}

.gix-solar__content > p:not(.gix-kicker) {
    max-width: 700px;
    margin: 30px 0 0;
    font-size: 1.12rem;
    line-height: 1.75;
}

.gix-solar__status {
    display: inline-flex;
    margin-top: 34px;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    font-family: var(--gix-font-display);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

/* Contact */

.gix-contact {
    padding: clamp(96px, 10vw, 160px) 0;
    color: var(--gix-white);
    background: var(--gix-blue);
}

.gix-contact__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1fr);
    gap: clamp(70px, 10vw, 160px);
}

.gix-contact__intro h2 {
    max-width: 620px;
    font-size: clamp(3rem, 5vw, 5.8rem);
}

.gix-contact__intro > p:not(.gix-kicker) {
    max-width: 530px;
    margin: 30px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.08rem;
    line-height: 1.8;
}

.gix-contact__intro > a {
    display: inline-block;
    margin-top: 38px;
    padding-bottom: 5px;
    border-bottom: 1px solid currentColor;
    font-weight: 700;
}

.gix-contact__form-wrap {
    padding-top: 4px;
}

.gix-form-message {
    margin: 0 0 28px;
    padding: 16px 18px;
    border-left: 4px solid var(--gix-white);
    background: rgba(255, 255, 255, 0.12);
}

.gix-form-message--error {
    border-left-color: #ffcbcb;
}

.gix-contact-form {
    display: grid;
    gap: 30px;
}

.gix-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.gix-contact-form label {
    display: grid;
    gap: 10px;
}

.gix-contact-form label > span {
    font-family: var(--gix-font-display);
    font-size: 0.77rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.gix-contact-form input,
.gix-contact-form textarea {
    width: 100%;
    color: var(--gix-white);
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 0;
    outline: 0;
    transition: border-color 160ms ease, background 160ms ease;
}

.gix-contact-form input {
    min-height: 52px;
}

.gix-contact-form textarea {
    min-height: 150px;
    padding: 12px 0;
    resize: vertical;
}

.gix-contact-form input:focus,
.gix-contact-form textarea:focus {
    border-color: var(--gix-white);
    box-shadow: 0 1px 0 var(--gix-white);
}

.gix-contact-form .gix-button {
    width: max-content;
    margin-top: 8px;
}

.gix-honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* 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-family: var(--gix-font-display);
    font-size: 0.78rem;
    font-weight: 800;
    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;
    }

    .gix-evidence {
        grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    }

    .gix-evidence__content {
        padding: 64px;
    }
}

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

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

    .gix-sector {
        min-height: 560px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.32);
    }

    .gix-sector:nth-child(2) {
        border-right: 0;
    }

    .gix-evidence {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .gix-evidence__media {
        min-height: 520px;
        aspect-ratio: 16 / 8;
    }

    .gix-evidence__content {
        padding: 90px max(32px, calc((100vw - var(--gix-shell)) / 2));
    }

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

    .gix-method-step:nth-child(2) {
        border-right: 0;
    }

    .gix-method-step:nth-child(-n + 2) {
        border-bottom: 1px solid var(--gix-gray-light);
    }

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

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

    .gix-intro__grid,
    .gix-section-head,
    .gix-trust__head,
    .gix-contact__grid {
        grid-template-columns: 1fr;
    }

    .gix-intro__grid {
        gap: 64px;
    }

    .gix-intro__copy {
        max-width: 760px;
        padding-top: 30px;
    }

    .gix-section-head,
    .gix-trust__head {
        gap: 38px;
    }

    .gix-section-head > p,
    .gix-trust__head > p {
        max-width: 720px;
    }

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

    .gix-contact__grid {
        gap: 80px;
    }
}

@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 {
        width: 44px;
        height: 44px;
    }

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

    .gix-hero {
        min-height: 760px;
    }

    .gix-hero__content {
        padding-bottom: 62px;
    }

    .gix-hero h1 {
        font-size: clamp(3rem, 13.6vw, 4.7rem);
        line-height: 0.98;
    }

    .gix-hero__lead {
        margin-top: 26px;
        font-size: 1rem;
        line-height: 1.7;
    }

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

    .gix-button {
        width: 100%;
    }

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

    .gix-metric {
        min-height: 150px;
        padding: 24px 20px;
    }

    .gix-metric:nth-child(2) {
        border-right: 0;
    }

    .gix-metric:nth-child(-n + 2) {
        border-bottom: 1px solid var(--gix-gray-light);
    }

    .gix-metric strong {
        font-size: clamp(2.6rem, 12vw, 4rem);
    }

    .gix-intro__heading h2,
    .gix-section-head h2,
    .gix-evidence__content h2,
    .gix-trust__head h2,
    .gix-solar__content h2,
    .gix-contact__intro h2 {
        letter-spacing: -0.045em;
    }

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

    .gix-study__image {
        height: 240px;
    }

    .gix-study__body {
        min-height: 0;
        padding: 32px 26px 40px;
    }

    .gix-sector {
        min-height: 470px;
    }

    .gix-evidence__media {
        min-height: 340px;
        aspect-ratio: 4 / 3;
    }

    .gix-evidence__content {
        padding: 74px 18px;
    }

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

    .gix-method-step,
    .gix-method-step + .gix-method-step {
        min-height: 0;
        padding: 28px 0 40px;
        border-right: 0;
        border-bottom: 1px solid var(--gix-gray-light);
    }

    .gix-method-step:last-child {
        border-bottom: 0;
    }

    .gix-method-step h3 {
        margin-top: 42px;
    }

    .gix-solar {
        min-height: 680px;
    }

    .gix-contact__grid {
        gap: 64px;
    }

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

    .gix-contact-form .gix-button {
        width: 100%;
    }

    .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 {
        width: 40px;
        height: 40px;
    }

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

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

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

    .gix-hero {
        min-height: 720px;
    }

    .gix-hero h1 {
        font-size: clamp(2.75rem, 13vw, 4rem);
    }

    .gix-metric {
        min-height: 132px;
        padding: 22px 16px;
    }

    .gix-metric span {
        font-size: 0.62rem;
        letter-spacing: 0.07em;
    }

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

    .gix-sector,
    .gix-sector:nth-child(2) {
        min-height: 430px;
        border-right: 0;
    }

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

    .gix-client-list span {
        min-height: 100px;
    }

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