* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #ffffff url('../imgs/pattern.jpg') center top no-repeat;
    background-size: 100%;
    font-family: 'Inter', sans-serif;
    color: #616161;
    line-height: 1.45;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4 {
    line-height: 1.2;
}


.gn--container {
    max-width: 1070px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}


.gn--block-gradient {
    background: linear-gradient(180deg, #f3f3f1, #fafaf7, #fafaf7);
    border-radius: 25px;
}

.gn--block-white {
    background: #fff;
    border: 1px solid #f3f3f1;
    border-radius: 25px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 14px 0px;
    transition: all 0.25s ease;
}

.gn--btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #111111;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 15px;
    padding: 12px 28px;
    border-radius: 35px;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    letter-spacing: -0.2px;
}

.gn--btn:hover {
    background: #2c2c2c;
    transform: translateY(-2px);
}


.gn--subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #37312f;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.gn--title {
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    color: #111111;
    line-height: 1.2;
}

.gn--title-lg {
    font-size: 48px;
    font-weight: 700;
}

.gn--title-md {
    font-size: 32px;
}

.gn--title-sm {
    font-size: 20px;
}

.gn--text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #616161;
    line-height: 1.5;
}


.gn--header {
    padding: 28px 0;
    position: relative;
    border-bottom: 1px solid #f3f3f1;
}

.gn--nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.gn--logo-area {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.gn--logo-img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.gn--brand {
    font-family: 'Urbanist', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #111111;
    letter-spacing: -0.5px;
}

.gn--menu {
    display: flex;
    align-items: center;
    gap: 38px;
}

.gn--menu a {
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #37312f;
    transition: color 0.2s;
}

.gn--menu a:hover {
    color: #000;
}

.gn--mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #111;
}


.gn--banner {
    text-align: center;
    padding: 80px 0 90px;
}

.gn--banner .gn--subtitle {
    margin-bottom: 14px;
}

.gn--banner-title {
    font-size: 58px;
    max-width: 800px;
    margin: 0 auto 20px;
}

.gn--banner-text {
    max-width: 620px;
    margin: 0 auto 32px;
    font-size: 18px;
}


.gn--grid-3 {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin: 40px 0 60px;
}

.gn--advantage-card {
    flex: 1;
    padding: 32px 24px;
}

.gn--icon-circle {
    width: 64px;
    height: 64px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 4px 12px;
    border: 1px solid #f0f0ec;
}

.gn--icon-circle img {
    width: 32px;
    height: 32px;
}


.gn--about-wrap {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    padding: 70px 0;
}

.gn--about-left {
    flex: 1.2;
}

.gn--about-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.gn--about-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: #fff;
    border-radius: 25px;
    padding: 24px 20px;
    border: 1px solid #f3f3f1;
    box-shadow: rgba(0, 0, 0, 0.03) 0px 4px 12px;
}

.gn--about-icon {
    width: 52px;
    height: 52px;
    background: #fafaf7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gn--about-icon img {
    width: 25px;
    height: 25px;
}

.gn--about-text h4 {
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #111;
    margin-bottom: 8px;
}


.gn--features-section {
    background: #fafaf7;
    padding: 80px 0;
}

.gn--section-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 56px;
}

.gn--features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.gn--feature-card {
    flex: 1 1 calc(33.33% - 30px);
    padding: 32px 24px;
    text-align: center;
}

.gn--feature-card .gn--icon-circle {
    margin: 0 auto 20px;
}


.gn--metrics {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.gn--metric-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 16px;
}

.gn--metric-number {
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    font-size: 44px;
    color: #111;
    letter-spacing: -1px;
}

.gn--metric-text {
    font-size: 16px;
    font-weight: 500;
    color: #37312f;
}

.gn--divider-line {
    width: 1px;
    height: 48px;
    background: #f3f3f1;
}


.gn--suits-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin: 60px 0;
}

.gn--suit-card {
    flex: 1;
    background: #fff;
    border-radius: 25px;
    padding: 28px 24px;
    border: 1px solid #f3f3f1;
    transition: all 0.2s;
}

.gn--suit-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.gn--suit-sub {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #a5a39e;
    letter-spacing: 0.4px;
}

.gn--suit-icon img {
    width: 25px;
    height: 25px;
}


.gn--cta {
    background-image: url('../imgs/cta_bg.png');
    background-size: cover;
    background-position: center;
    border-radius: 25px;
    padding: 80px 40px;
    text-align: center;
    margin: 40px 0 60px;
}

.gn--cta .gn--subtitle {
    color: #e5e2db;
}

.gn--cta .gn--title {
    color: #ffffff;
}

.gn--cta .gn--text {
    color: #ece8e0;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.gn--btn-light {
    background: #fff;
    color: #111;
}

.gn--btn-light:hover {
    background: #f0f0ea;
}


.gn--footer {
    padding: 64px 0 32px;
    border-top: 1px solid #f3f3f1;
    background: #fff;
}

.gn--footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.gn--footer-col {
    min-width: 160px;
}

.gn--footer-logo {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 16px;
}

.gn--footer-logo img {
    width: 35px;
}

.gn--footer-logo span {
    font-family: 'Urbanist', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #111;
}

.gn--footer-text {
    font-size: 14px;
    max-width: 240px;
    margin-top: 8px;
}

.gn--footer-menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gn--footer-menu a,
.gn--footer-links a,
.gn--footer-contacts p {
    text-decoration: none;
    font-size: 15px;
    color: #616161;
    transition: color 0.2s;
}

.gn--footer-menu a:hover,
.gn--footer-links a:hover {
    color: #111;
}

.gn--footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gn--footer-contacts{
    max-width: 250px;
    width: 100%;
}

.gn--footer-contacts p {
    margin-bottom: 8px;
}

.gn--copyright {
    border-top: 1px solid #f3f3f1;
    padding-top: 28px;
    text-align: left;
    font-size: 14px;
    color: #8b8a85;
}



.gn--legal-page {
    padding: 60px 0 90px;
}

.gn--legal-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 48px;
}

.gn--legal-date {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #8b8a85;
    margin-top: 12px;
}

.gn--legal-content {
    background: #fff;
    border-radius: 25px;
    padding: 48px 52px;
    border: 1px solid #f3f3f1;
    box-shadow: rgba(0, 0, 0, 0.03) 0px 8px 24px;
}

.gn--legal-intro {
    margin-bottom: 28px;
    font-size: 16px;
    line-height: 1.6;
}

.gn--legal-h2 {
    margin: 32px 0 16px;
    font-weight: 600;
    font-size: 22px;
}

.gn--legal-h3 {
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #111111;
    margin: 24px 0 10px;
}

.gn--legal-list {
    margin-left: 24px;
    margin-bottom: 20px;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #616161;
}

.gn--legal-list li {
    margin-bottom: 8px;
}

.gn--legal-list li strong {
    color: #37312f;
}

.gn--contact-line {
    margin-bottom: 8px;
    line-height: 1.5;
}

.gn--legal-footer {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #f0f0ec;
    font-size: 14px;
}


@media (max-width: 768px) {
    .gn--legal-content {
        padding: 32px 24px;
    }

    .gn--legal-h2 {
        font-size: 20px;
    }

    .gn--legal-header h1 {
        font-size: 36px;
    }
}


.gn--contact-page {
    padding: 60px 0 90px;
}

.gn--contact-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}

.gn--contact-subtext {
    font-size: 18px;
    margin-top: 18px;
}

.gn--contact-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.gn--contact-info {
    flex: 1;
    min-width: 260px;
}

.gn--contact-card {
    background: #fff;
    border-radius: 25px;
    padding: 32px 28px;
    border: 1px solid #f3f3f1;
    box-shadow: rgba(0, 0, 0, 0.03) 0px 8px 20px;
}

.gn--contact-card h3 {
    margin-bottom: 28px;
}

.gn--contact-item {
    margin-bottom: 36px;
}

.gn--contact-item:last-child {
    margin-bottom: 0;
}

.gn--contact-label {
    font-weight: 600;
    color: #111111;
    margin-bottom: 6px;
    font-size: 15px;
}

.gn--contact-form-wrapper {
    flex: 1.4;
    min-width: 300px;
}

.gn--form-card {
    background: #fff;
    border-radius: 25px;
    padding: 32px 34px;
    border: 1px solid #f3f3f1;
    box-shadow: rgba(0, 0, 0, 0.03) 0px 8px 20px;
}

.gn--form-subtext {
    margin-bottom: 28px;
}

.gn--contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.gn--form-row {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.gn--form-row .gn--form-group {
    flex: 1;
}

.gn--form-group {
    display: flex;
    flex-direction: column;
}

.gn--form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #37312f;
    margin-bottom: 6px;
}

.gn--form-group input,
.gn--form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 20px;
    border: 1px solid #e7e5df;
    background: #fefefc;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: border 0.2s, box-shadow 0.2s;
    outline: none;
}

.gn--form-group input:focus,
.gn--form-group textarea:focus {
    border-color: #111111;
    box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.05);
}

.gn--btn-full {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 6px;
}

.gn--thankyou-message {
    display: none;
    margin-top: 24px;
    padding: 16px 20px;
    background: #f0f9f0;
    border-radius: 18px;
    text-align: center;
    color: #2b6e2f;
    font-weight: 500;
    font-size: 15px;
}


@media (max-width: 768px) {
    .gn--contact-page {
        padding: 40px 0 60px;
    }

    .gn--contact-header h1 {
        font-size: 36px;
    }

    .gn--contact-subtext {
        font-size: 16px;
    }

    .gn--contact-grid {
        gap: 32px;
    }

    .gn--form-card {
        padding: 28px 24px;
    }

    .gn--form-row {
        flex-direction: column;
        gap: 18px;
    }
}


.gn--about-page {
    padding: 60px 0 90px;
}

.gn--about-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 56px;
}

.gn--about-subtext {
    font-size: 18px;
    margin-top: 18px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.gn--about-features-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.gn--about-feature-card {
    flex: 1;
    min-width: 240px;
    padding: 36px 28px;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gn--about-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: rgba(0, 0, 0, 0.08) 0px 12px 28px 0px;
}

.gn--about-icon-wrap {
    width: 72px;
    height: 72px;
    background: #fafaf7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.gn--about-icon-wrap img {
    width: 25px;
    height: 25px;
}

.gn--about-feature-card h3 {
    margin-bottom: 12px;
}

.gn--about-detailed {
    background: linear-gradient(180deg, #f3f3f1, #fafaf7, #fafaf7);
    border-radius: 25px;
    padding: 56px 52px;
}

.gn--about-detailed-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.gn--about-detailed-header h2 {
    margin-bottom: 20px;
}

.gn--about-detailed-content {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.gn--about-text-block h3 {
    margin-bottom: 12px;
}

.gn--about-text-block p {
    line-height: 1.6;
}


@media (max-width: 992px) {
    .gn--about-features-grid {
        gap: 20px;
    }

    .gn--about-detailed {
        padding: 40px 32px;
    }
}

@media (max-width: 768px) {
    .gn--about-page {
        padding: 40px 0 60px;
    }

    .gn--about-header h1 {
        font-size: 36px;
    }

    .gn--about-subtext {
        font-size: 16px;
    }

    .gn--about-features-grid {
        flex-direction: column;
    }

    .gn--about-feature-card {
        padding: 28px 24px;
    }

    .gn--about-detailed {
        padding: 32px 24px;
    }

    .gn--about-detailed-header h2 {
        font-size: 28px;
    }
}


.gn--features-page {
    padding: 60px 0 90px;
    background: #fafaf7;
}

.gn--features-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}

.gn--features-subtext {
    font-size: 18px;
    margin-top: 18px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.gn--features-grid-2cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.gn--feature-detailed-card {
    padding: 36px 32px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    background: #fff;
}

.gn--feature-detailed-card:hover {
    transform: translateY(-4px);
    box-shadow: rgba(0, 0, 0, 0.08) 0px 20px 30px -12px;
}

.gn--feature-icon-wrap {
    width: 64px;
    height: 64px;
    background: #fafaf7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.gn--feature-icon-wrap img {
    width: 32px;
    height: 32px;
}

.gn--feature-detailed-card h3 {
    margin-bottom: 14px;
}

.gn--feature-detailed-card>.gn--text {
    margin-bottom: 20px;
    line-height: 1.5;
}

.gn--feature-list {
    margin: 0;
    padding-left: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #616161;
    line-height: 1.6;
}

.gn--feature-list li {
    margin-bottom: 8px;
}

.gn--feature-list li:last-child {
    margin-bottom: 0;
}


@media (max-width: 992px) {
    .gn--features-grid-2cols {
        gap: 24px;
    }

    .gn--feature-detailed-card {
        padding: 28px 24px;
    }
}

@media (max-width: 768px) {
    .gn--features-page {
        padding: 40px 0 60px;
    }

    .gn--features-header h1 {
        font-size: 36px;
    }

    .gn--features-subtext {
        font-size: 16px;
    }

    .gn--features-grid-2cols {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gn--feature-detailed-card {
        padding: 24px 20px;
    }

    .gn--feature-icon-wrap {
        width: 56px;
        height: 56px;
    }

    .gn--feature-icon-wrap img {
        width: 28px;
        height: 28px;
    }
}



































@media (max-width: 992px) {
    .gn--container {
        padding: 0 20px;
    }

    .gn--grid-3,
    .gn--features-grid,
    .gn--suits-grid {
        gap: 20px;
    }

    .gn--about-wrap {
        flex-direction: column;
    }

    .gn--metrics {
        flex-direction: column;
        align-items: stretch;
    }

    .gn--metric-item {
        justify-content: center;
    }

    .gn--divider-line {
        display: none;
    }

    .gn--feature-card {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .gn--menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #fff;
        padding: 28px 0;
        gap: 24px;
        border-top: 1px solid #f1f1ed;
        margin-top: 24px;
    }

    .gn--menu.open {
        display: flex;
    }

    .gn--mobile-toggle {
        display: block;
    }

    .gn--nav {
        flex-wrap: wrap;
    }

    .gn--banner-title {
        font-size: 42px;
    }

    .gn--title-lg {
        font-size: 36px;
    }

    .gn--features-grid {
        flex-direction: column;
    }

    .gn--feature-card {
        flex: 1 1 100%;
    }

    .gn--suits-grid {
        flex-direction: column;
    }

    .gn--footer-grid {
        flex-direction: column;
        gap: 32px;
    }

    .gn--cta {
        padding: 50px 20px;
    }
}

@media(max-width: 560px){
    .gn--grid-3{
        flex-direction: column;
    }
}