:root {
    --gtec-navy: #083656;
    --gtec-blue: #0074b8;
    --gtec-teal: #00929c;
    --gtec-orange: #ef7523;
    --gtec-green: #3d915d;
    --gtec-ink: #1b2733;
    --gtec-muted: #5f6f7c;
    --gtec-line: #d3dfe8;
    --gtec-bg: #f4f7f9;
    --gtec-white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

.gtec-old-home {
    display: none;
}

.gtec-site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(211, 223, 232, 0.9);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
    color: var(--gtec-ink);
    font-family: "Inclusive Sans", "Inter", "Segoe UI", Arial, sans-serif;
}

.gtec-site-header__inner {
    width: min(1540px, calc(100% - 40px));
    min-height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.gtec-site-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--gtec-ink);
    font-size: 1.95rem;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
}

.gtec-site-brand:hover,
.gtec-site-brand:focus {
    color: var(--gtec-ink);
    text-decoration: none;
}

.gtec-site-brand img {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.gtec-site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(12px, 2vw, 28px);
    flex: 1 1 auto;
}

.gtec-site-nav a,
.gtec-nav-menu > summary {
    color: var(--gtec-muted);
    font-size: 1.48rem;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.gtec-site-nav a.is-active {
    color: var(--gtec-blue);
}

.gtec-site-nav a:hover,
.gtec-site-nav a:focus,
.gtec-nav-menu > summary:hover,
.gtec-nav-menu > summary:focus {
    color: var(--gtec-blue);
    text-decoration: none;
}

.gtec-nav-menu {
    position: relative;
}

.gtec-nav-menu > summary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    list-style: none;
}

.gtec-nav-menu > summary::-webkit-details-marker {
    display: none;
}

.gtec-nav-menu > summary::after {
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    content: "";
    transform: rotate(45deg) translateY(-2px);
}

.gtec-nav-menu[open] > summary::after {
    transform: rotate(225deg) translateY(-2px);
}

.gtec-nav-menu__panel {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    z-index: 1001;
    min-width: 280px;
    padding: 8px;
    border: 1px solid var(--gtec-line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 44px rgba(24, 64, 92, 0.18);
    transform: translateX(-50%);
}

.gtec-nav-menu__panel a {
    display: block;
    padding: 10px 12px;
    border-radius: 6px;
    color: var(--gtec-ink);
    font-size: 1.42rem;
    line-height: 1.25;
}

.gtec-nav-menu__panel a:hover,
.gtec-nav-menu__panel a:focus {
    background: var(--gtec-bg);
    color: var(--gtec-blue);
}

.gtec-site-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.gtec-lang-form {
    margin: 0;
}

.gtec-lang-btn,
.gtec-portal-btn {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gtec-line);
    border-radius: 8px;
    background: var(--gtec-white);
    color: var(--gtec-navy);
    padding: 0 14px;
    font-size: 1.35rem;
    font-weight: 900;
    text-decoration: none;
}

.gtec-lang-btn:hover,
.gtec-lang-btn:focus,
.gtec-portal-btn:hover,
.gtec-portal-btn:focus {
    border-color: var(--gtec-blue);
    color: var(--gtec-blue);
    text-decoration: none;
}

.gtec-portal-btn {
    background: var(--gtec-navy);
    border-color: var(--gtec-navy);
    color: var(--gtec-white);
}

.gtec-portal-btn:hover,
.gtec-portal-btn:focus {
    background: var(--gtec-blue);
    color: var(--gtec-white);
}

.gtec-landing {
    background: var(--gtec-bg);
    color: var(--gtec-ink);
    font-family: "Inclusive Sans", "Inter", "Segoe UI", Arial, sans-serif;
    line-height: 1.5;
}

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

.gtec-hero {
    min-height: 690px;
    padding: 54px clamp(20px, 5vw, 72px) 86px;
    background:
        linear-gradient(90deg, rgba(8, 54, 86, 0.98) 0%, rgba(8, 54, 86, 0.9) 34%, rgba(8, 54, 86, 0.34) 62%, rgba(8, 54, 86, 0.04) 100%),
        url("/Imgs/gtec-hero-transversal-bg.png") center right / cover no-repeat;
    color: var(--gtec-white);
}

.gtec-hero__inner {
    width: min(1540px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
    gap: clamp(24px, 4vw, 64px);
    align-items: center;
}

.gtec-brand-logo {
    display: block;
    width: clamp(96px, 9vw, 140px);
    height: auto;
    margin: 0 0 22px;
    filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.28));
}

.gtec-hero__showcase {
    min-height: 500px;
}

.gtec-eyebrow {
    margin: 0 0 16px;
    color: #cfe8f4;
    font-size: clamp(1.4rem, 1.2vw, 1.8rem);
    font-weight: 700;
    letter-spacing: 0;
}

.gtec-hero h1 {
    max-width: 920px;
    margin: 0;
    color: var(--gtec-white);
    font-size: clamp(3.2rem, 3.45vw, 5.2rem);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: 0;
}

.gtec-hero__lead {
    max-width: 900px;
    margin: 24px 0 0;
    color: #e8f3f7;
    font-size: clamp(1.75rem, 1.25vw, 2.15rem);
    line-height: 1.48;
}

.gtec-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 30px;
}

.gtec-hero__metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    max-width: 720px;
    margin: 28px 0 0;
}

.gtec-hero__metrics div {
    min-width: 0;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

.gtec-hero__metrics dt,
.gtec-hero__metrics dd {
    margin: 0;
}

.gtec-hero__metrics dt {
    color: var(--gtec-white);
    font-size: clamp(2.25rem, 2vw, 3.4rem);
    font-weight: 900;
    line-height: 1;
}

.gtec-hero__metrics dd {
    margin-top: 6px;
    color: #d7e8f0;
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.25;
}

.gtec-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 24px;
    border-radius: 8px;
    font-size: 1.8rem;
    font-weight: 800;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.gtec-btn:hover,
.gtec-btn:focus {
    transform: translateY(-1px);
    text-decoration: none;
}

.gtec-btn--primary {
    background: var(--gtec-orange);
    color: var(--gtec-white);
    box-shadow: 0 14px 28px rgba(239, 117, 35, 0.26);
}

.gtec-btn--primary:hover,
.gtec-btn--primary:focus {
    background: #d96315;
    color: var(--gtec-white);
}

.gtec-btn--secondary {
    border: 2px solid rgba(255, 255, 255, 0.88);
    color: var(--gtec-white);
    background: rgba(8, 54, 86, 0.4);
}

.gtec-btn--secondary:hover,
.gtec-btn--secondary:focus {
    background: rgba(255, 255, 255, 0.12);
    color: var(--gtec-white);
}

.gtec-process {
    padding: clamp(22px, 3vw, 34px);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--gtec-ink);
    box-shadow: 0 18px 52px rgba(24, 64, 92, 0.16);
}

.gtec-process-band {
    position: relative;
    z-index: 2;
    width: min(1540px, calc(100% - 40px));
    margin: -54px auto 0;
}

.gtec-process h2,
.gtec-section h2,
.gtec-routes h2,
.gtec-proof h2,
.gtec-cta h2 {
    margin: 0;
    font-weight: 800;
    letter-spacing: 0;
}

.gtec-process h2 {
    font-size: clamp(2.6rem, 2vw, 3.6rem);
}

.gtec-process ol {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.gtec-process ol::before {
    display: none;
}

.gtec-process li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    padding: 0 16px 0 0;
    border-right: 1px solid var(--gtec-line);
    font-size: clamp(1.7rem, 1.25vw, 2.2rem);
    font-weight: 700;
}

.gtec-process li:last-child {
    border-right: 0;
}

.gtec-process span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex: 0 0 48px;
    background: var(--gtec-blue);
    color: var(--gtec-white);
    font-size: 1.4rem;
    font-weight: 800;
}

.gtec-process li:nth-child(2) span {
    background: var(--gtec-teal);
}

.gtec-process li:nth-child(3) span {
    background: var(--gtec-orange);
}

.gtec-process li:nth-child(4) span {
    background: var(--gtec-green);
}

.gtec-process__link {
    display: inline-flex;
    align-items: center;
    margin-top: 22px;
    color: var(--gtec-blue);
    font-size: 1.55rem;
    font-weight: 900;
    text-decoration: none;
}

.gtec-process__link:hover,
.gtec-process__link:focus {
    color: var(--gtec-navy);
    text-decoration: none;
}

.gtec-principle,
.gtec-section,
.gtec-routes,
.gtec-proof,
.gtec-cta {
    width: min(1540px, calc(100% - 40px));
    margin: 0 auto;
}

.gtec-principle {
    display: grid;
    grid-template-columns: minmax(260px, 0.52fr) minmax(0, 1fr);
    gap: clamp(24px, 5vw, 72px);
    align-items: center;
    margin-top: 38px;
    padding: clamp(26px, 4vw, 42px);
    border: 1px solid var(--gtec-line);
    border-radius: 8px;
    background: var(--gtec-white);
}

.gtec-principle__title p {
    margin: 0;
    font-size: clamp(3rem, 3vw, 5rem);
    font-weight: 800;
    line-height: 1.18;
}

.gtec-principle__text p {
    margin: 0;
    color: var(--gtec-muted);
    font-size: clamp(2rem, 1.7vw, 3rem);
}

.gtec-section {
    padding: 72px 0 30px;
}

.gtec-section__head {
    max-width: 980px;
}

.gtec-section__head .gtec-eyebrow,
.gtec-proof .gtec-eyebrow,
.gtec-cta .gtec-eyebrow {
    color: var(--gtec-blue);
}

.gtec-section h2,
.gtec-proof h2,
.gtec-cta h2 {
    color: var(--gtec-ink);
    font-size: clamp(3rem, 3vw, 5.2rem);
    line-height: 1.16;
}

.gtec-section__head p:not(.gtec-eyebrow) {
    margin: 18px 0 0;
    color: var(--gtec-muted);
    font-size: clamp(1.8rem, 1.45vw, 2.45rem);
}

.gtec-capability-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 34px;
}

.gtec-capability,
.gtec-routes article {
    border: 1px solid var(--gtec-line);
    border-radius: 8px;
    background: var(--gtec-white);
    box-shadow: 0 14px 38px rgba(24, 64, 92, 0.08);
}

.gtec-capability {
    padding: 0;
    overflow: hidden;
}

.gtec-capability__image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: var(--gtec-navy);
}

.gtec-capability__body {
    padding: 26px 28px 30px;
}

.gtec-code {
    display: inline-flex;
    min-width: 52px;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 8px;
    background: var(--gtec-blue);
    color: var(--gtec-white);
    font-weight: 900;
    font-size: 1.4rem;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0, 116, 184, 0.16);
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.gtec-code:hover,
.gtec-code:focus {
    color: var(--gtec-white);
    filter: brightness(1.05);
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 14px 26px rgba(24, 64, 92, 0.2);
}

.gtec-code--eq,
.gtec-code--eco {
    background: var(--gtec-orange);
    box-shadow: 0 10px 20px rgba(239, 117, 35, 0.16);
}

.gtec-code--ren {
    background: var(--gtec-green);
    box-shadow: 0 10px 20px rgba(61, 145, 93, 0.16);
}

.gtec-code--ai {
    background: var(--gtec-navy);
    box-shadow: 0 10px 20px rgba(8, 54, 86, 0.16);
}

.gtec-code--web {
    background: var(--gtec-teal);
    box-shadow: 0 10px 20px rgba(0, 146, 156, 0.16);
}

.gtec-capability h3 {
    margin: 0;
    color: var(--gtec-ink);
    font-size: clamp(2rem, 1.5vw, 2.7rem);
    font-weight: 800;
    line-height: 1.18;
}

.gtec-capability p,
.gtec-routes p {
    margin: 14px 0 0;
    color: var(--gtec-muted);
    font-size: 1.8rem;
    line-height: 1.55;
}

.gtec-routes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
    padding: 26px 0 68px;
}

.gtec-routes article {
    display: flex;
    min-height: 260px;
    flex-direction: column;
    padding: clamp(24px, 3vw, 34px);
}

.gtec-routes h2 {
    font-size: clamp(2.25rem, 1.8vw, 3.1rem);
    line-height: 1.16;
}

.gtec-routes p {
    max-width: 700px;
    font-size: clamp(1.55rem, 1.1vw, 1.9rem);
    line-height: 1.5;
}

.gtec-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    padding-top: 22px;
}

.gtec-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 8px;
    background: var(--gtec-blue);
    color: var(--gtec-white);
    font-size: 1.32rem;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.gtec-tags span:nth-child(2) {
    background: var(--gtec-teal);
}

.gtec-tags span:nth-child(3) {
    background: var(--gtec-orange);
}

.gtec-tags span:nth-child(4) {
    background: var(--gtec-green);
}

.gtec-proof {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
    gap: clamp(26px, 5vw, 76px);
    align-items: center;
    padding: clamp(36px, 5vw, 58px);
    border-radius: 8px;
    background: var(--gtec-navy);
    color: var(--gtec-white);
}

.gtec-proof h2,
.gtec-proof .gtec-eyebrow {
    color: var(--gtec-white);
}

.gtec-proof ul {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.gtec-proof li {
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #e8f3f7;
    font-size: 1.75rem;
    font-weight: 700;
}

.gtec-cta {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
    padding: 70px 0 78px;
}

.gtec-cta div {
    max-width: 860px;
}

.gtec-footer {
    background:
        linear-gradient(135deg, rgba(8, 54, 86, 0.98), rgba(3, 23, 39, 0.98)),
        var(--gtec-navy);
    color: var(--gtec-white);
    font-family: "Inclusive Sans", "Inter", "Segoe UI", Arial, sans-serif;
}

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

.gtec-footer__inner {
    width: min(1540px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.4fr);
    gap: clamp(34px, 5vw, 86px);
    padding: clamp(44px, 6vw, 74px) 0;
}

.gtec-footer__brand {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
}

.gtec-footer__logo {
    display: inline-flex;
    width: 84px;
    height: 84px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    text-decoration: none;
}

.gtec-footer__logo:hover,
.gtec-footer__logo:focus {
    border-color: rgba(255, 255, 255, 0.36);
    text-decoration: none;
}

.gtec-footer__logo img {
    width: 62px;
    height: 62px;
    object-fit: contain;
}

.gtec-footer h2,
.gtec-footer h3,
.gtec-footer p {
    margin: 0;
    letter-spacing: 0;
}

.gtec-footer h2 {
    color: var(--gtec-white);
    font-size: clamp(2.4rem, 2vw, 3.4rem);
    font-weight: 900;
    line-height: 1.12;
}

.gtec-footer p {
    max-width: 560px;
    margin-top: 14px;
    color: #cfe0ea;
    font-size: 1.75rem;
    line-height: 1.55;
}

.gtec-footer__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    margin-top: 22px;
    padding: 0 18px;
    border-radius: 8px;
    background: var(--gtec-orange);
    color: var(--gtec-white);
    font-size: 1.55rem;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.gtec-footer__cta:hover,
.gtec-footer__cta:focus {
    background: #d96315;
    color: var(--gtec-white);
    text-decoration: none;
}

.gtec-footer__links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(18px, 3vw, 34px);
}

.gtec-footer__links section {
    min-width: 0;
}

.gtec-footer h3 {
    color: var(--gtec-white);
    font-size: 1.55rem;
    font-weight: 900;
    text-transform: uppercase;
}

.gtec-footer__links a {
    display: block;
    margin-top: 13px;
    color: #cfe0ea;
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1.35;
    text-decoration: none;
}

.gtec-footer__links a:hover,
.gtec-footer__links a:focus {
    color: var(--gtec-white);
    text-decoration: none;
}

.gtec-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.gtec-social-link {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    gap: 8px;
    margin-top: 0;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--gtec-white);
    line-height: 1;
    text-decoration: none;
}

.gtec-social-link svg {
    width: 20px;
    height: 20px;
    fill: none;
    flex: 0 0 auto;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.gtec-social-link span {
    font-size: 1.35rem;
    font-weight: 900;
}

.gtec-social-link:hover,
.gtec-social-link:focus {
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.14);
    color: var(--gtec-white);
}

.gtec-footer__bottom {
    display: flex;
    width: min(1540px, calc(100% - 40px));
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    color: #aec5d2;
    font-size: 1.35rem;
    font-weight: 700;
}

@media (max-width: 1050px) {
    .gtec-site-header__inner {
        min-height: 92px;
        flex-wrap: wrap;
        gap: 10px 18px;
        padding: 12px 0;
    }

    .gtec-site-nav {
        order: 3;
        width: 100%;
        justify-content: flex-start;
        overflow: visible;
        padding: 2px 0 4px;
    }

    .gtec-hero__inner,
    .gtec-principle,
    .gtec-proof {
        grid-template-columns: 1fr;
    }

    .gtec-hero {
        padding-top: 54px;
        background-position: center right;
    }

    .gtec-hero__showcase {
        display: none;
    }

    .gtec-process ol {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gtec-process li:nth-child(2) {
        border-right: 0;
    }

    .gtec-capability-grid,
    .gtec-routes {
        grid-template-columns: 1fr;
    }

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

    .gtec-footer__inner {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 640px) {
    .gtec-site-header__inner {
        width: min(100% - 28px, 1540px);
    }

    .gtec-site-brand span {
        font-size: 1.65rem;
    }

    .gtec-site-brand img {
        width: 40px;
        height: 40px;
    }

    .gtec-site-actions {
        gap: 6px;
    }

    .gtec-site-nav a,
    .gtec-nav-menu > summary {
        font-size: 1.4rem;
    }

    .gtec-hero {
        min-height: auto;
        padding: 44px 20px 76px;
        background:
            linear-gradient(90deg, rgba(8, 54, 86, 0.98) 0%, rgba(8, 54, 86, 0.9) 62%, rgba(8, 54, 86, 0.58) 100%),
            url("/Imgs/gtec-hero-transversal-bg.png") center / cover no-repeat;
    }

    .gtec-hero h1 {
        font-size: 3.25rem;
    }

    .gtec-hero__lead,
    .gtec-principle__text p,
    .gtec-section__head p:not(.gtec-eyebrow) {
        font-size: 1.85rem;
    }

    .gtec-hero__metrics {
        grid-template-columns: 1fr;
    }

    .gtec-btn {
        width: 100%;
        font-size: 1.65rem;
    }

    .gtec-principle,
    .gtec-section,
    .gtec-routes,
    .gtec-proof,
    .gtec-cta,
    .gtec-process-band {
        width: min(100% - 28px, 1540px);
    }

    .gtec-process ol {
        grid-template-columns: 1fr;
    }

    .gtec-process li,
    .gtec-process li:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid var(--gtec-line);
        padding: 0 0 14px;
    }

    .gtec-process li:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .gtec-principle {
        margin-top: 24px;
    }

    .gtec-section {
        padding-top: 46px;
    }

    .gtec-capability {
        padding: 0;
    }

    .gtec-capability__body {
        padding: 22px;
    }

    .gtec-proof li {
        width: 100%;
    }

    .gtec-footer__inner,
    .gtec-footer__bottom {
        width: min(100% - 28px, 1540px);
    }

    .gtec-footer__brand {
        grid-template-columns: 1fr;
    }

    .gtec-footer__links {
        grid-template-columns: 1fr;
    }

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