:root {
    --ga-bg: #050d17;
    --ga-bg-2: #071525;
    --ga-panel: rgba(8, 25, 43, 0.78);
    --ga-panel-solid: #0a192a;
    --ga-border: rgba(143, 184, 224, 0.22);
    --ga-text: #f6f9ff;
    --ga-muted: #b5c1d0;
    --ga-blue: #009cff;
    --ga-blue-2: #0064e6;
    --ga-green: #93d21f;
    --ga-orange: #ff8900;
    --ga-pink: #ff4b86;
    --ga-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
    --ga-radius: 14px;
    --ga-container: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 94px;
}

body.ga-site {
    margin: 0;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 75% 7%, rgba(0, 156, 255, 0.12), transparent 26%),
        radial-gradient(circle at 12% 48%, rgba(147, 210, 31, 0.05), transparent 28%),
        linear-gradient(180deg, #040b13 0%, #06111f 38%, #040b13 100%);
    color: var(--ga-text);
    font-family: Inter, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.55;
}

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

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

img {
    max-width: 100%;
    height: auto;
}

svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

button,
input,
textarea,
select {
    font: inherit;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.ga-container {
    width: min(calc(100% - 40px), var(--ga-container));
    margin-inline: auto;
}

.ga-main {
    min-height: 60vh;
}

.ga-header {
    position: fixed;
    z-index: 1000;
    inset: 0 0 auto;
    border-bottom: 1px solid transparent;
    transition: background-color .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.admin-bar .ga-header {
    top: 32px;
}

.ga-header.is-scrolled {
    background: rgba(3, 11, 20, 0.9);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(18px);
}

.ga-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 90px;
    gap: 30px;
}

.ga-logo {
    position: relative;
    z-index: 4;
    display: inline-flex;
    width: 194px;
    flex: 0 0 auto;
}

.ga-logo__image {
    width: 100%;
    max-height: 72px;
    object-fit: contain;
    object-position: left center;
}

.ga-navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;
}

.ga-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ga-menu li {
    position: relative;
}

.ga-menu a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    color: #f8fbff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.01em;
    transition: color .2s ease;
}

.ga-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 0;
    height: 2px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--ga-green), var(--ga-blue));
    transition: right .25s ease;
}

.ga-menu a:hover,
.ga-menu .current-menu-item > a {
    color: var(--ga-green);
}

.ga-menu a:hover::after,
.ga-menu .current-menu-item > a::after {
    right: 0;
}

.ga-menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 11px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    background: rgba(4, 15, 27, 0.75);
    color: white;
    cursor: pointer;
}

.ga-menu-toggle > span:not(.screen-reader-text) {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    border-radius: 2px;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
}

.ga-menu-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.ga-menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
}

.ga-menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.ga-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 22px;
    overflow: hidden;
    border: 1px solid rgba(87, 182, 255, 0.9);
    border-radius: 10px;
    background: linear-gradient(180deg, #0b91ff 0%, #035fd7 100%);
    box-shadow: 0 10px 26px rgba(0, 112, 255, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    color: white;
    font-weight: 700;
    font-size: 14px;
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.ga-button::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -45%;
    width: 30%;
    height: 300%;
    transform: rotate(25deg);
    background: rgba(255, 255, 255, 0.16);
    transition: left .45s ease;
}

.ga-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 32px rgba(0, 112, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    color: white;
}

.ga-button:hover::before {
    left: 120%;
}

.ga-button--header {
    min-height: 44px;
    padding-inline: 18px;
    white-space: nowrap;
}

.ga-button--outline {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(5, 16, 28, 0.48);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

.ga-button--wide {
    width: 100%;
}

.ga-button__icon {
    position: relative;
    width: 20px;
    height: 20px;
}

.ga-button__icon--end {
    width: 18px;
    height: 18px;
    margin-left: 5px;
}

.ga-hero {
    position: relative;
    display: flex;
    align-items: stretch;
    min-height: 760px;
    isolation: isolate;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ga-hero::before,
.ga-hero::after {
    content: '';
    position: absolute;
    z-index: 3;
    pointer-events: none;
}

.ga-hero::before {
    left: -80px;
    bottom: 20px;
    width: 500px;
    height: 250px;
    border: 1px solid rgba(0, 156, 255, 0.18);
    border-right: 0;
    border-bottom: 0;
    border-radius: 60% 0 0 0;
    transform: rotate(-10deg);
}

.ga-hero::after {
    right: -190px;
    bottom: -220px;
    width: 720px;
    height: 420px;
    border-top: 2px solid rgba(0, 156, 255, 0.55);
    border-radius: 50%;
    box-shadow: 0 -10px 40px rgba(0, 156, 255, 0.15);
    transform: rotate(-10deg);
}

.ga-hero__media {
    position: absolute;
    z-index: -3;
    inset: 0;
    background-image: url('../images/hero.webp');
    background-size: cover;
    background-position: 63% center;
    filter: saturate(1.04) contrast(1.05);
    transform: scale(1.015);
}

.ga-hero__shade {
    position: absolute;
    z-index: -2;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(3, 11, 20, 0.99) 0%, rgba(3, 11, 20, 0.95) 25%, rgba(3, 11, 20, 0.68) 47%, rgba(3, 11, 20, 0.14) 74%, rgba(3, 11, 20, 0.1) 100%),
        linear-gradient(0deg, rgba(3, 11, 20, 0.94) 0%, rgba(3, 11, 20, 0) 35%),
        linear-gradient(180deg, rgba(3, 11, 20, 0.2) 0%, transparent 30%);
}

.ga-hero__inner {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    min-height: 760px;
    padding-top: 100px;
    padding-bottom: 90px;
}

.ga-hero__content {
    width: min(100%, 565px);
}

.ga-hero h1 {
    margin: 0;
    font-family: Montserrat, Inter, sans-serif;
    font-size: clamp(42px, 5vw, 67px);
    line-height: 1.03;
    letter-spacing: -0.045em;
    text-wrap: balance;
}

.ga-hero h1 span {
    display: block;
}

.ga-text-gradient {
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
}

.ga-text-gradient--green {
    background-image: linear-gradient(90deg, #b3ed2b, #63c92e);
}

.ga-hero__content > p {
    max-width: 530px;
    margin: 24px 0 0;
    color: #d0d9e4;
    font-size: 17px;
    line-height: 1.75;
}

.ga-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.ga-trust-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    width: 710px;
    max-width: calc(100vw - 40px);
    margin-top: 48px;
}

.ga-trust-row > div {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    color: #eaf1f8;
    font-size: 12px;
    line-height: 1.25;
}

.ga-trust-row span {
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    color: var(--ga-green);
}

.ga-trust-row strong {
    font-weight: 600;
}

.ga-section {
    position: relative;
    padding: 44px 0;
}

.ga-section--benefits {
    z-index: 5;
    margin-top: -118px;
    padding-top: 0;
}

.ga-section--cases,
.ga-section--quality,
.ga-section--partners {
    padding-top: 34px;
}

.ga-section-heading {
    margin: 0 auto 26px;
    text-align: center;
}

.ga-section-heading h2 {
    margin: 0;
    font-family: Montserrat, Inter, sans-serif;
    font-size: clamp(30px, 3.5vw, 44px);
    line-height: 1.1;
    letter-spacing: -0.035em;
}

.ga-section-heading h2 span {
    color: var(--ga-blue);
}

.ga-section-heading p {
    margin: 8px 0 0;
    color: var(--ga-muted);
    font-size: 14px;
}

.ga-grid {
    display: grid;
    gap: 12px;
}

.ga-grid--benefits {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

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

.ga-grid--cases {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.ga-grid--certifications {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: min(100%, 940px);
    margin-inline: auto;
}

.ga-card {
    position: relative;
    border: 1px solid var(--ga-border);
    border-radius: var(--ga-radius);
    background:
        linear-gradient(145deg, rgba(13, 31, 51, 0.9), rgba(5, 17, 30, 0.88)),
        rgba(7, 20, 35, 0.9);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035), 0 12px 35px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(8px);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.ga-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 156, 255, 0.48);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24), 0 0 25px rgba(0, 156, 255, 0.08);
}

.ga-accent-green {
    --accent: var(--ga-green);
}

.ga-accent-blue {
    --accent: var(--ga-blue);
}

.ga-accent-orange {
    --accent: var(--ga-orange);
}

.ga-accent-pink {
    --accent: var(--ga-pink);
}

.ga-icon {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    margin-inline: auto;
    padding: 12px;
    border: 1px solid color-mix(in srgb, var(--accent, var(--ga-blue)) 70%, transparent);
    border-radius: 50%;
    color: var(--accent, var(--ga-blue));
    background: color-mix(in srgb, var(--accent, var(--ga-blue)) 8%, transparent);
    box-shadow: 0 0 24px color-mix(in srgb, var(--accent, var(--ga-blue)) 12%, transparent);
}

.ga-icon--small {
    width: 58px;
    height: 58px;
    margin: 0;
    padding: 12px;
}

.ga-benefit {
    min-height: 226px;
    padding: 24px 18px 22px;
    text-align: center;
}

.ga-benefit::after,
.ga-solution::after,
.ga-case::after {
    content: '';
    position: absolute;
    pointer-events: none;
    inset: auto 20% -1px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent, var(--ga-blue)), transparent);
    opacity: 0.65;
}

.ga-benefit h2 {
    margin: 17px 0 9px;
    font-family: Montserrat, Inter, sans-serif;
    font-size: 16px;
    line-height: 1.25;
}

.ga-benefit p {
    margin: 0;
    color: var(--ga-muted);
    font-size: 13px;
    line-height: 1.55;
}

.ga-solution {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    min-height: 132px;
    padding: 20px;
    gap: 18px;
}

.ga-solution h3 {
    margin: 0 0 6px;
    font-family: Montserrat, Inter, sans-serif;
    font-size: 17px;
    line-height: 1.25;
}

.ga-solution p {
    margin: 0;
    color: var(--ga-muted);
    font-size: 13px;
    line-height: 1.5;
}

.ga-card__arrow {
    width: 22px;
    height: 22px;
    color: #dce7f4;
    opacity: 0.9;
    transition: transform .2s ease, color .2s ease;
}

.ga-solution:hover .ga-card__arrow {
    transform: translateX(4px);
    color: var(--accent, var(--ga-blue));
}

.ga-case {
    min-width: 0;
    overflow: hidden;
}

.ga-case__image {
    position: relative;
    height: 145px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: #0c1825;
}

.ga-case__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(4, 13, 22, 0.78) 100%);
}

.ga-case__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.ga-case:hover .ga-case__image img {
    transform: scale(1.06);
}

.ga-case__body {
    position: relative;
    min-height: 235px;
    padding: 28px 14px 16px;
}

.ga-case__icon {
    position: absolute;
    top: -28px;
    left: 14px;
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    padding: 10px;
    border: 2px solid var(--accent, var(--ga-blue));
    border-radius: 50%;
    color: var(--accent, var(--ga-blue));
    background: #071524;
    box-shadow: 0 0 24px color-mix(in srgb, var(--accent, var(--ga-blue)) 20%, transparent);
}

.ga-case h3 {
    margin: 0 0 7px;
    font-family: Montserrat, Inter, sans-serif;
    font-size: 15px;
    line-height: 1.25;
}

.ga-case p {
    min-height: 58px;
    margin: 0;
    color: var(--ga-muted);
    font-size: 12px;
    line-height: 1.45;
}

.ga-stat {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin-top: 12px;
}

.ga-stat strong {
    color: var(--accent, var(--ga-blue));
    font-family: Montserrat, Inter, sans-serif;
    font-size: 22px;
    line-height: 1;
}

.ga-stat span {
    color: #d8e1eb;
    font-size: 10px;
    line-height: 1.35;
}

.ga-cert {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 155px;
    padding: 18px;
    text-align: center;
}

.ga-iso {
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    border: 2px solid var(--ga-blue);
    border-radius: 50%;
    color: #bce5ff;
    font-family: Montserrat, Inter, sans-serif;
    font-weight: 800;
    font-size: 24px;
    letter-spacing: -0.05em;
    background:
        radial-gradient(circle, rgba(0, 156, 255, 0.18), transparent 62%),
        repeating-linear-gradient(0deg, transparent 0 9px, rgba(0, 156, 255, 0.12) 10px 11px),
        repeating-linear-gradient(90deg, transparent 0 9px, rgba(0, 156, 255, 0.12) 10px 11px);
    box-shadow: 0 0 28px rgba(0, 156, 255, 0.16);
}

.ga-cert strong {
    margin-top: 10px;
    font-size: 12px;
}

.ga-cert span {
    margin-top: 3px;
    color: var(--ga-muted);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.ga-cert--gptw {
    background: linear-gradient(145deg, rgba(31, 20, 48, 0.9), rgba(9, 18, 31, 0.92));
}

.ga-gptw {
    display: grid;
    place-items: center;
    width: 70px;
    min-height: 86px;
    padding: 8px;
    border-radius: 3px;
    background: linear-gradient(180deg, #ff1c1c 0 70%, #14328e 70% 100%);
    color: white;
    font-family: Inter, sans-serif;
    font-weight: 800;
    font-size: 14px;
    line-height: 1;
    text-align: left;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
}

.ga-partners {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 10px;
}

.ga-partner {
    display: grid;
    place-items: center;
    min-height: 64px;
    padding: 10px;
    border: 1px solid var(--ga-border);
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(13, 31, 51, 0.92), rgba(6, 17, 29, 0.88));
    color: #eaf2fb;
    font-family: Montserrat, Inter, sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    letter-spacing: -0.02em;
    transition: transform .2s ease, border-color .2s ease, color .2s ease;
}

.ga-partner:nth-child(1),
.ga-partner:nth-child(4),
.ga-partner:nth-child(10),
.ga-partner:nth-child(12) {
    color: var(--ga-blue);
}

.ga-partner:nth-child(2),
.ga-partner:nth-child(13),
.ga-partner:nth-child(14) {
    color: var(--ga-orange);
}

.ga-partner:nth-child(7) {
    color: #5cdb73;
}

.ga-partner:nth-child(15) {
    color: #ff3d3d;
}

.ga-partner:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 156, 255, 0.45);
}

.ga-contact {
    position: relative;
    overflow: hidden;
    margin-top: 36px;
    padding: 50px 0 58px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at 90% 100%, rgba(0, 156, 255, 0.18), transparent 32%),
        linear-gradient(90deg, rgba(6, 18, 32, 0.98), rgba(5, 13, 24, 0.96));
}

.ga-contact::before,
.ga-contact::after {
    content: '';
    position: absolute;
    pointer-events: none;
}

.ga-contact::before {
    right: -120px;
    bottom: -150px;
    width: 620px;
    height: 320px;
    border-top: 2px solid rgba(0, 156, 255, 0.65);
    border-radius: 50%;
    transform: rotate(-7deg);
    box-shadow: 0 -12px 30px rgba(0, 156, 255, 0.13);
}

.ga-contact::after {
    right: 20px;
    bottom: 28px;
    width: 240px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ga-orange), transparent);
    box-shadow: 0 0 18px var(--ga-orange);
}

.ga-contact__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.25fr 0.95fr 0.8fr;
    align-items: center;
    gap: 44px;
}

.ga-contact__intro h2 {
    margin: 0;
    font-family: Montserrat, Inter, sans-serif;
    font-size: clamp(32px, 4vw, 49px);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.ga-contact__intro h2 span {
    color: var(--ga-blue);
}

.ga-contact__intro p {
    max-width: 500px;
    margin: 14px 0 0;
    color: var(--ga-muted);
}

.ga-contact__details {
    display: grid;
    gap: 12px;
}

.ga-contact__details a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #e4ecf5;
    font-size: 14px;
    transition: color .2s ease;
}

.ga-contact__details a:hover {
    color: var(--ga-green);
}

.ga-contact__details span,
.ga-contact__whatsapp > span {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    color: var(--ga-green);
}

.ga-contact__cta {
    display: grid;
    gap: 16px;
}

.ga-contact__whatsapp {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ga-contact__whatsapp > span {
    width: 36px;
    height: 36px;
}

.ga-contact__whatsapp small,
.ga-contact__whatsapp strong {
    display: block;
}

.ga-contact__whatsapp small {
    color: var(--ga-green);
    font-weight: 700;
}

.ga-contact__whatsapp strong {
    font-family: Montserrat, Inter, sans-serif;
    font-size: 17px;
}

.ga-footer {
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: #030a12;
}

.ga-footer__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 30px;
    min-height: 110px;
}

.ga-logo--footer {
    width: 155px;
}

.ga-footer p {
    margin: 0;
    color: #c3cfdb;
    text-align: center;
}

.ga-footer__copyright {
    font-size: 12px;
    opacity: 0.65;
}

.ga-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s ease, transform .65s ease;
}

.ga-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.ga-grid > .ga-reveal:nth-child(2) { transition-delay: .05s; }
.ga-grid > .ga-reveal:nth-child(3) { transition-delay: .1s; }
.ga-grid > .ga-reveal:nth-child(4) { transition-delay: .15s; }
.ga-grid > .ga-reveal:nth-child(5) { transition-delay: .2s; }
.ga-grid > .ga-reveal:nth-child(6) { transition-delay: .25s; }

.ga-content-area {
    padding: 150px 0 80px;
}

.ga-content-card {
    padding: clamp(24px, 5vw, 60px);
    border: 1px solid var(--ga-border);
    border-radius: var(--ga-radius);
    background: var(--ga-panel);
}

.ga-entry + .ga-entry {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid var(--ga-border);
}

.ga-entry__title {
    margin-top: 0;
    font-family: Montserrat, Inter, sans-serif;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.1;
}

.ga-entry__content {
    color: #d8e1eb;
}

.ga-entry__content a {
    color: var(--ga-blue);
}

@media (max-width: 1180px) {
    .ga-header__inner {
        gap: 20px;
    }

    .ga-logo {
        width: 172px;
    }

    .ga-navigation,
    .ga-menu {
        gap: 18px;
    }

    .ga-menu a {
        font-size: 13px;
    }

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

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

    .ga-partners {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .ga-contact__grid {
        grid-template-columns: 1fr 1fr;
    }

    .ga-contact__cta {
        grid-column: 1 / -1;
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

@media (max-width: 980px) {
    .admin-bar .ga-header {
        top: 46px;
    }

    .ga-header__inner {
        min-height: 78px;
    }

    .ga-menu-toggle {
        display: block;
        position: relative;
        z-index: 4;
    }

    .ga-navigation {
        position: fixed;
        inset: 0;
        z-index: 3;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 110px 28px 40px;
        background: rgba(2, 9, 16, 0.98);
        backdrop-filter: blur(22px);
        transform: translateX(100%);
        visibility: hidden;
        transition: transform .28s ease, visibility .28s ease;
    }

    .admin-bar .ga-navigation {
        padding-top: 150px;
    }

    .ga-navigation.is-open {
        transform: translateX(0);
        visibility: visible;
    }

    .ga-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
    }

    .ga-menu a {
        width: 100%;
        min-height: 52px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        font-size: 17px;
    }

    .ga-menu a::after {
        display: none;
    }

    .ga-button--header {
        width: 100%;
        min-height: 52px;
        margin-top: 18px;
    }

    .ga-hero,
    .ga-hero__inner {
        min-height: 720px;
    }

    .ga-hero__media {
        background-position: 68% center;
    }

    .ga-hero__shade {
        background:
            linear-gradient(90deg, rgba(3, 11, 20, 0.98) 0%, rgba(3, 11, 20, 0.9) 42%, rgba(3, 11, 20, 0.43) 100%),
            linear-gradient(0deg, rgba(3, 11, 20, 0.94) 0%, rgba(3, 11, 20, 0) 45%);
    }

    .ga-hero__content {
        width: min(100%, 530px);
    }

    .ga-trust-row {
        width: 580px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

    .ga-footer__inner {
        grid-template-columns: 1fr;
        justify-items: center;
        padding: 30px 0;
    }
}

@media (max-width: 720px) {
    .ga-container {
        width: min(calc(100% - 28px), var(--ga-container));
    }

    .ga-logo {
        width: 154px;
    }

    .ga-hero,
    .ga-hero__inner {
        min-height: 820px;
    }

    .ga-hero__inner {
        align-items: flex-end;
        padding-top: 120px;
        padding-bottom: 132px;
    }

    .ga-hero__media {
        background-position: 66% top;
    }

    .ga-hero__shade {
        background:
            linear-gradient(180deg, rgba(3, 11, 20, 0.08) 0%, rgba(3, 11, 20, 0.35) 30%, rgba(3, 11, 20, 0.92) 58%, rgba(3, 11, 20, 1) 100%),
            linear-gradient(90deg, rgba(3, 11, 20, 0.85), rgba(3, 11, 20, 0.08));
    }

    .ga-hero h1 {
        font-size: clamp(36px, 11vw, 52px);
    }

    .ga-hero__content > p {
        font-size: 15px;
        line-height: 1.65;
    }

    .ga-hero__actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .ga-button {
        min-height: 54px;
        padding-inline: 15px;
        font-size: 12px;
        text-align: center;
    }

    .ga-trust-row {
        display: none;
    }

    .ga-section--benefits {
        margin-top: -94px;
    }

    .ga-grid--benefits,
    .ga-grid--solutions,
    .ga-grid--cases,
    .ga-grid--certifications {
        grid-template-columns: 1fr;
    }

    .ga-benefit {
        display: grid;
        grid-template-columns: 54px 1fr;
        grid-template-rows: auto auto;
        column-gap: 15px;
        min-height: auto;
        padding: 17px;
        text-align: left;
    }

    .ga-benefit .ga-icon {
        grid-row: 1 / 3;
        width: 54px;
        height: 54px;
        margin: 0;
        padding: 10px;
    }

    .ga-benefit h2 {
        margin: 2px 0 4px;
    }

    .ga-benefit p {
        font-size: 12px;
    }

    .ga-solution {
        min-height: 114px;
        padding: 16px;
        gap: 13px;
    }

    .ga-solution h3 {
        font-size: 15px;
    }

    .ga-solution p {
        font-size: 12px;
    }

    .ga-case__image {
        height: 205px;
    }

    .ga-case__body {
        min-height: auto;
        padding: 30px 18px 20px;
    }

    .ga-case h3 {
        font-size: 18px;
    }

    .ga-case p {
        min-height: 0;
        font-size: 13px;
    }

    .ga-stat span {
        font-size: 12px;
    }

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

    .ga-partner {
        min-height: 58px;
        font-size: 12px;
    }

    .ga-contact {
        padding: 44px 0 50px;
    }

    .ga-contact__grid,
    .ga-contact__cta {
        grid-template-columns: 1fr;
    }

    .ga-contact__grid {
        gap: 28px;
    }

    .ga-contact__intro h2 {
        font-size: 34px;
    }

    .ga-footer p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .ga-hero,
    .ga-hero__inner {
        min-height: 780px;
    }

    .ga-hero__actions {
        gap: 10px;
    }

    .ga-button__icon {
        display: none;
    }

    .ga-section {
        padding: 36px 0;
    }

    .ga-section-heading h2 {
        font-size: 29px;
    }
}

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

    .ga-reveal {
        opacity: 1;
        transform: none;
    }
}
