* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    font-family: 'Inter', sans-serif;
    color: #fff;
    line-height: 1.5;
    font-weight: 400;
}

.gn-container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px;
}


h1,
h2,
h3 {
    line-height: 1.2;
    font-weight: 500 !important;
}

.gn-title {
    font-family: 'Onest', 'Inter', sans-serif;
    background: linear-gradient(180deg, #fff, #ffffff3d);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.gn-text {
    color: #9A9A9A;
    font-size: 1rem;
    line-height: 1.5;
}


.gn-header {
    background-color: #000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 9999;
}

.gn-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gn-logo {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
}

.gn-logo__img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.gn-logo__brand {
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff, #aaa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
}

.gn-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.gn-nav__list {
    display: flex;
    gap: 28px;
    list-style: none;
}

.gn-nav__link {
    text-decoration: none;
    color: #9A9A9A;
    font-weight: 500;
    transition: color 0.2s;
    font-size: 0.95rem;
}

.gn-nav__link:hover {
    color: #fff;
}

.gn-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #101010;
    padding: 13px 26px;
    border-radius: 7px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.gn-btn--primary {
    background-color: #005afd;
}

.gn-btn--primary:hover {
    background-color: #0046c4;
}

.gn-btn--secondary:hover {
    background-color: #1c1c1c;
}

.gn-btn__arrow {
    width: 19px;
    height: 19px;
    filter: brightness(0) invert(1);
}


.gn-hero {
    background-image: url('../image/hero-img.avif');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.gn-hero__sub {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #9A9A9A;
    margin-bottom: 20px;
}

.gn-hero__title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gn-hero__text {
    max-width: 650px;
    margin: 0 auto 32px;
    font-size: 1.1rem;
}


.gn-grid-3 {
    display: flex;
    gap: 30px;
    margin: 70px 0;
    flex-wrap: wrap;
}

.gn-card {
    flex: 1;
    background: transparent;
    border: 1px solid #0f0f0f;
    border-radius: 16px;
    padding: 28px 24px;
    transition: transform 0.2s, border-color 0.2s;
}

.gn-card__icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.gn-card__icon img {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.gn-card__title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
}

.gn-card__text {
    color: #9A9A9A;
}


.gn-about {
    text-align: center;
    margin: 80px 0;
}

.gn-about__title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.gn-about__desc {
    max-width: 780px;
    margin: 0 auto 40px;
}

.gn-about__image {
    width: 100%;
    border-radius: 24px;
    margin: 32px 0;
    border: 1px solid #1f1f1f;
}

.gn-about__wide-text {
    max-width: 100%;
    margin: 16px 0 32px;
    font-size: 1rem;
    text-align: center;
}


.gn-capabilities {
    background-image: url('../image/section.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    padding: 80px 0;
    border-radius: 32px;
    margin: 60px 0;
}

.gn-capabilities__header {
    text-align: center;
    margin-bottom: 56px;
}

.gn-capabilities__title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.gn-capabilities__sub {
    max-width: 680px;
    margin: 0 auto;
}

.gn-capabilities__layout {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.gn-capabilities__left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.gn-capabilities__row {
    display: flex;
    gap: 28px;
}

.gn-capabilities__card {
    flex: 1;
    background: #000;
    border: 1px solid #0f0f0f;
    border-radius: 16px;
    padding: 28px 20px;
}

.gn-capabilities__icon {
    width: 65px;
    height: 65px;
    background-color: #101010;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.gn-capabilities__icon img {
    width: 35px;
}

.gn-capabilities__card-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.gn-capabilities__right {
    flex: 1;
    background: #000;
    border: 1px solid #0f0f0f;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.gn-capabilities__right-icon {
    width: 65px;
    height: 65px;
    background: #101010;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.gn-capabilities__right-icon img {
    width: 35px;
}

.gn-capabilities__right-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.gn-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    margin-top: 24px;
}

.gn-link img {
    width: 19px;
    height: 19px;
}


.gn-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 80px 0;
    flex-wrap: wrap;
    border-top: 1px solid #1e1e1e;
    border-bottom: 1px solid #1e1e1e;
    padding: 48px 0;
}

.gn-stats__item {
    flex: 1;
    text-align: center;
    position: relative;
}

.gn-stats__number {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(180deg, #fff, #9A9A9A);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 8px;
}

.gn-stats__label {
    color: #9A9A9A;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.gn-divider-vertical {
    width: 1px;
    height: 50px;
    background-color: #2a2a2a;
}


.gn-cta {
    background-image: url('../image/cta.webp');
    background-size: cover;
    background-position: center;
    border-radius: 28px;
    padding: 80px 40px;
    text-align: center;
    margin: 60px 0;
}

.gn-cta__title {
    font-size: 2.3rem;
    margin-bottom: 18px;
}

.gn-cta__text {
    max-width: 560px;
    margin: 0 auto 28px;
}


.gn-footer {
    border-top: 1px solid #0f0f0f;
    padding: 56px 0 32px;
    margin-top: 40px;
}

.gn-footer__top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 48px;
}

.gn-footer__col {
    flex: 1;
    min-width: 180px;
}

.gn-footer__logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.gn-footer__logo img {
    width: 38px;
}

.gn-footer__brand {
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff, #aaa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.gn-footer__desc {
    color: #9A9A9A;
    font-size: 0.85rem;
    max-width: 240px;
}

.gn-footer__title {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1rem;
}

.gn-footer__menu {
    list-style: none;
}

.gn-footer__menu li {
    margin-bottom: 12px;
}

.gn-footer__menu a {
    text-decoration: none;
    color: #9A9A9A;
    font-size: 0.9rem;
}

.gn-footer__menu a:hover {
    color: white;
}

.gn-footer__contacts p {
    color: #9A9A9A;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.gn-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 32px;
    border-top: 1px solid #121212;
}

.gn-copyright {
    color: #9A9A9A;
    font-size: 0.8rem;
}

.gn-legal {
    display: flex;
    gap: 32px;
}

.gn-legal a {
    text-decoration: none;
    color: #9A9A9A;
    font-size: 0.8rem;
}

.gn-legal a:hover {
    color: white;
}


.gn-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 27px;
    height: 22px;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 999;
}

.gn-mobile-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: white;
    border-radius: 3px;
    transition: 0.2s;
}

.gn-contact {
    padding: 80px 0 100px;
}

.gn-contact__header {
    text-align: center;
    margin-bottom: 64px;
}

.gn-contact__title {
    font-size: 3rem;
    margin-bottom: 16px;
}

.gn-contact__desc {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.gn-contact__grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.gn-contact__info {
    flex: 1;
    min-width: 240px;
}

.gn-contact__block {
    margin-bottom: 48px;
}

.gn-contact__block-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #9A9A9A;
    margin-bottom: 12px;
    font-weight: 500;
}

.gn-contact__link {
    font-size: 1.3rem;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.gn-contact__link:hover {
    color: #005afd;
}

.gn-contact__address {
    font-size: 1.3rem;
    font-weight: 500;
    color: #fff;
    line-height: 1.4;
}

.gn-contact__form-wrapper {
    flex: 1.5;
    min-width: 300px;
}

.gn-contact__form {
    background: transparent;
    border: 1px solid #0f0f0f;
    border-radius: 16px;
    padding: 40px;
}

.gn-form__row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.gn-form__group {
    flex: 1;
    margin-bottom: 20px;
}

.gn-contact__form input,
.gn-contact__form textarea {
    width: 100%;
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 10px;
    padding: 14px 18px;
    color: #fff;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s;
}

.gn-contact__form input:focus,
.gn-contact__form textarea:focus {
    outline: none;
    border-color: #005afd;
}

.gn-contact__form input::placeholder,
.gn-contact__form textarea::placeholder {
    color: #5a5a5a;
}

.gn-contact__submit {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
    cursor: pointer;
}

.gn-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: 0.2s ease;
}

.gn-popup-overlay.active {
    visibility: visible;
    opacity: 1;
}

.gn-popup {
    background: #000;
    border: 1px solid #1f1f1f;
    border-radius: 24px;
    padding: 48px 40px;
    text-align: center;
    max-width: 420px;
    width: 90%;
}

.gn-popup__icon {
    width: 64px;
    height: 64px;
    background: #005afd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    margin: 0 auto 24px;
}

.gn-popup__title {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.gn-popup__text {
    color: #9A9A9A;
    margin-bottom: 28px;
}

.gn-popup__close {
    cursor: pointer;
}

@media (max-width: 768px) {
    .gn-contact__grid {
        flex-direction: column;
    }

    .gn-contact__form {
        padding: 28px;
    }

    .gn-contact__title {
        font-size: 2.2rem;
    }

    .gn-contact__link,
    .gn-contact__address {
        font-size: 1.1rem;
    }
}



.gn-legal {
    padding: 80px 0 120px;
}

.gn-legal__container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
}

.gn-legal__header {
    margin-bottom: 48px;
    border-bottom: 1px solid #0f0f0f;
    padding-bottom: 32px;
}

.gn-legal__title {
    font-size: 3rem;
    margin-bottom: 16px;
}

.gn-legal__date {
    color: #9A9A9A;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.gn-legal__last-updated {
    color: #6a6a6a;
    font-size: 0.85rem;
}

.gn-legal__content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.gn-legal__section {
    margin-bottom: 8px;
}

.gn-legal__section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.gn-legal__subsection {
    margin-top: 24px;
    margin-bottom: 16px;
}

.gn-legal__subsection-title {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: #e0e0e0;
}

.gn-legal__text {
    color: #9A9A9A;
    line-height: 1.7;
    margin-bottom: 16px;
}

.gn-legal__list {
    margin: 16px 0 16px 24px;
    color: #9A9A9A;
    line-height: 1.7;
}

.gn-legal__list li {
    margin-bottom: 8px;
}

.gn-legal__contact {
    background: #0a0a0a;
    border: 1px solid #0f0f0f;
    border-radius: 16px;
    padding: 28px 32px;
    margin-top: 40px;
}

.gn-legal__contact-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.gn-legal__contact p {
    color: #9A9A9A;
    margin-bottom: 6px;
}

.gn-legal__contact a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.gn-legal__contact a:hover {
    color: #005afd;
}

.gn-divider {
    height: 1px;
    background: #0f0f0f;
    margin: 24px 0;
}

@media (max-width: 768px) {
    .gn-legal {
        padding: 48px 0 80px;
    }

    .gn-legal__title {
        font-size: 2rem;
    }

    .gn-legal__section-title {
        font-size: 1.3rem;
    }
}

.gn-about-us {
    padding: 80px 0 100px;
}

.gn-about-us__header {
    text-align: center;
    margin-bottom: 64px;
}

.gn-about-us__title {
    font-size: 3rem;
    margin-bottom: 20px;
}

.gn-about-us__subtitle {
    max-width: 680px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

.gn-about-us__grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.gn-about-us__card {
    flex: 1;
    min-width: 260px;
    background: transparent;
    border: 1px solid #0f0f0f;
    border-radius: 20px;
    padding: 36px 28px;
    transition: transform 0.2s ease, border-color 0.2s;
}

.gn-about-us__card:hover {
    border-color: #2a2a2a;
    transform: translateY(-4px);
}

.gn-about-us__icon {
    width: 65px;
    height: 65px;
    background-color: #101010;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.gn-about-us__icon img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.gn-about-us__card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 14px;
    color: #fff;
}

.gn-about-us__story {
    text-align: center;
    max-width: 960px;
    margin: 0 auto;
}

.gn-about-us__story-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.gn-about-us__story-text {
    text-align: left;
}

.gn-about-us__story-text p {
    margin-bottom: 24px;
    line-height: 1.7;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .gn-about-us {
        padding: 48px 0 64px;
    }

    .gn-about-us__title {
        font-size: 2.2rem;
    }

    .gn-about-us__story-title {
        font-size: 1.6rem;
    }

    .gn-about-us__card {
        padding: 28px 20px;
    }
}

.gn-capabilities-full {
    padding: 80px 0;
    background: transparent;
}

.gn-capabilities-full__header {
    text-align: center;
    margin-bottom: 64px;
}

.gn-capabilities-full__subtitle {
    color: #005afd;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 16px;
}

.gn-capabilities-full__title {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.gn-capabilities-full__desc {
    max-width: 680px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.gn-capabilities-full__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.gn-capabilities-full__card {
    background: transparent;
    border: 1px solid #0f0f0f;
    border-radius: 20px;
    padding: 32px 28px;
    transition: border-color 0.2s, transform 0.2s;
}

.gn-capabilities-full__card:hover {
    border-color: #2a2a2a;
    transform: translateY(-2px);
}

.gn-capabilities-full__card--full {
    grid-column: span 2;
    padding: 36px 32px;
}

.gn-capabilities-full__card-full-inner {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.gn-capabilities-full__card-full-content {
    flex: 1;
}

.gn-capabilities-full__icon {
    width: 65px;
    height: 65px;
    background-color: #101010;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    flex-shrink: 0;
}

.gn-capabilities-full__icon img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.gn-capabilities-full__card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 14px;
    color: #fff;
}

.gn-capabilities-full__row {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.gn-capabilities-full__column {
    flex: 1;
    min-width: 200px;
}

.gn-capabilities-full__list {
    list-style: none;
    padding: 0;
    margin: 12px 0 0 0;
}

.gn-capabilities-full__list li {
    color: #9A9A9A;
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
    line-height: 1.5;
}

.gn-capabilities-full__list li::before {
    content: "▹";
    position: absolute;
    left: 0;
    color: #005afd;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .gn-capabilities-full {
        padding: 48px 0;
    }

    .gn-capabilities-full__title {
        font-size: 2rem;
    }

    .gn-capabilities-full__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gn-capabilities-full__card--full {
        grid-column: span 1;
    }

    .gn-capabilities-full__card-full-inner {
        flex-direction: column;
    }

    .gn-capabilities-full__row {
        flex-direction: column;
        gap: 16px;
    }
}




























@media (max-width: 992px) {
    .gn-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 320px;
        height: 100vh;
        background-color: #000;
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 40px;
        transition: 0.3s;
        z-index: 999;
        border-left: 1px solid #1e1e1e;
        gap: 40px;
    }

    .gn-nav.open {
        right: 0;
    }

    .gn-nav__list {
        flex-direction: column;
        gap: 28px;
    }

    .gn-mobile-toggle {
        display: flex;
    }

    .gn-header__inner {
        position: relative;
    }

    .gn-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.7);
        z-index: 150;
        display: none;
    }

    .gn-overlay.active {
        display: block;
    }

    .gn-hero__title {
        font-size: 2.5rem;
    }

    .gn-grid-3,
    .gn-capabilities__layout {
        flex-direction: column;
    }

    .gn-capabilities__row {
        flex-direction: column;
    }

    .gn-stats {
        flex-direction: column;
        gap: 32px;
    }

    .gn-divider-vertical {
        display: none;
    }
}

img {
    display: block;
    max-width: 100%;
}

a {
    cursor: pointer;
}

.gn-arrow-svg {
    width: 19px;
    height: 19px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24' width='19' height='19'%3E%3Cpath d='M5 12h14M12 5l7 7-7 7' stroke='white' stroke-width='1.8' fill='none'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
}

@media(max-width: 550px) {
    .gn-footer__bottom {
        gap: 15px;
    }

    .gn-hero {
        padding-bottom: 40px;
    }

    .gn-about__image {
        border-radius: 12px;
    }

    .gn-cta {
        padding: 70px 20px;
    }
}