/* =========================================
   GLOBAL
========================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    font-family:
        Inter,
        Arial,
        Helvetica,
        sans-serif;

    color: #17221b;

    background: #ffffff;
}

a {
    text-decoration: none;
}

button {
    font-family: inherit;
}


/* =========================================
   HEADER
========================================= */

.gs-header {
    width: 100%;

    background: #ffffff;

    border-bottom: 1px solid #e9eee9;

    position: sticky;

    top: 0;

    z-index: 1000;
}

.gs-header-inner {
    max-width: 1250px;

    margin: auto;

    padding: 14px 25px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


/* =========================================
   LOGO
========================================= */

.gs-logo {
    display: flex;

    align-items: center;

    gap: 8px;

    color: #17221b;
}

.gs-logo-icon {
    width: 32px;

    height: 32px;

    position: relative;
}

.gs-logo-icon span:first-child {
    position: absolute;

    width: 22px;

    height: 10px;

    background: #0a9347;

    transform: rotate(45deg);

    top: 7px;

    left: 2px;
}

.gs-logo-icon span:last-child {
    position: absolute;

    width: 10px;

    height: 10px;

    background: #79c92b;

    border-radius: 50%;

    bottom: 2px;

    left: 3px;
}

.gs-logo-text {
    display: flex;

    flex-direction: column;
}

.gs-logo-text strong {
    font-size: 14px;

    color: #0a9347;
}

.gs-logo-text small {
    font-size: 7px;

    color: #68746d;
}


/* =========================================
   NAVIGATION
========================================= */

.gs-nav {
    display: flex;

    align-items: center;

    gap: 30px;
}

.gs-nav a {
    color: #3f4842;

    font-size: 12px;

    font-weight: 500;
}

.gs-nav a:hover {
    color: #079447;
}


/* =========================================
   HEADER BUTTON
========================================= */

.gs-header-btn {
    padding: 10px 18px;

    background: #079447;

    color: white;

    border-radius: 6px;

    font-size: 11px;

    font-weight: 600;

    transition: 0.2s;
}

.gs-header-btn:hover {
    background: #067c3b;
}


/* =========================================
   HERO
========================================= */

.gs-faq-hero {
    background:
        linear-gradient(
            105deg,
            #f5faf5 0%,
            #ffffff 70%
        );

    overflow: hidden;
}

.gs-hero-inner {
    max-width: 850px;

    min-height: 310px;

    margin: auto;

    /* padding: 15px 25px; */

    display: flex;

    align-items: center;

    justify-content: space-between;
}

.gs-hero-content {
    max-width: 550px;
}

.gs-faq-badge {
    display: inline-block;

    padding: 5px 10px;

    margin-bottom: 14px;

    background: #e9f8ed;

    color: #079447;

    border-radius: 4px;

    font-size: 9px;

    font-weight: 600;
}

.gs-hero-content h1 {
    margin: 0;

    font-size: 35px;

    line-height: 1.05;

    letter-spacing: -2px;

    color: #18231c;
}

.gs-hero-content h1 span {
    display: block;

    color: #079447;
}

.gs-hero-content p {
    max-width: 450px;

    margin-top: 18px;

    color: #718078;

    font-size: 13px;

    line-height: 1.6;
}


/* =========================================
   HERO VISUAL
========================================= */

.gs-hero-visual {
    width: 470px;

    height: 250px;

    position: relative;
}

.gs-question-mark {
    position: absolute;

    left: 60px;

    top: -20px;

    color: #199d55;

    font-size: 190px;

    font-weight: 900;

    line-height: 1;

    text-shadow:
        0 8px 20px
        rgba(7, 148, 71, 0.15);
}

.gs-dashboard-card {
    position: absolute;

    right: 80px;

    top: 55px;

    width: 210px;

    height: 140px;

    padding: 12px;

    background: #ffffff;

    border: 5px solid #18231c;

    border-radius: 8px;

    transform: rotate(8deg);

    box-shadow:
        0 15px 30px
        rgba(0, 0, 0, 0.12);
}

.gs-dashboard-header {
    display: flex;

    gap: 4px;
}

.gs-dashboard-header span {
    width: 6px;

    height: 6px;

    border-radius: 50%;

    background: #079447;
}

.gs-chart {
    height: 90px;

    margin-top: 15px;

    position: relative;

    border-bottom: 1px solid #dce7df;
}

.gs-chart-line {
    position: absolute;

    width: 120px;

    height: 60px;

    border-top: 3px solid #079447;

    border-right: 3px solid #079447;

    transform:
        rotate(-20deg);

    left: 30px;

    top: 10px;
}

.gs-chart-bar {
    position: absolute;

    bottom: 0;

    width: 12px;

    background: #b5e3c4;
}

.bar-1 {
    left: 20px;

    height: 30px;
}

.bar-2 {
    left: 55px;

    height: 50px;
}

.bar-3 {
    left: 90px;

    height: 40px;
}

.bar-4 {
    left: 125px;

    height: 70px;
}

.gs-plant {
    position: absolute;

    right: 0;

    bottom: 15px;

    font-size: 60px;
}


/* =========================================
   FAQ TABS
========================================= */

.gs-faq-navigation {
    background: #ffffff;

    border-bottom: 1px solid #e9eee9;
}

.gs-faq-tabs {
    max-width: 1100px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(6, 1fr);
}

.gs-faq-tab {
    padding: 20px 10px;

    border: 0;

    border-bottom: 2px solid transparent;

    background: transparent;

    color: #6c7770;

    cursor: pointer;

    font-size: 10px;
}

.gs-faq-tab.active {
    color: #079447;

    border-bottom-color: #079447;
}

.tab-icon {
    display: block;

    margin-bottom: 6px;

    font-size: 17px;

    color: #079447;
}


/* =========================================
   FAQ SECTION
========================================= */

.gs-faq-section {
    max-width: 1100px;

    margin: auto;

    padding: 45px 25px 70px;
}

.gs-faq-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 18px 30px;

    align-items: start;
}

.gs-faq-column {
    display: flex;

    flex-direction: column;

    gap: 14px;
}


/* =========================================
   FAQ ITEM
========================================= */

.gs-faq-item {
    background: #ffffff;

    border: 1px solid #e3e9e4;

    border-radius: 8px;

    overflow: hidden;

    transition: 0.25s;
}

.gs-faq-item:hover {
    border-color: #a9d8b9;

    box-shadow:
        0 5px 18px
        rgba(7, 148, 71, 0.06);
}


/* =========================================
   QUESTION
========================================= */

.gs-faq-question {
    width: 100%;

    padding: 18px;

    border: 0;

    background: #ffffff;

    display: flex;

    align-items: center;

    justify-content: space-between;

    text-align: left;

    cursor: pointer;

    color: #26312a;

    font-size: 15px;

    font-weight: 600;
}

.gs-faq-question span {
    display: flex;

    gap: 10px;

    align-items: center;
}

.gs-faq-question b {
    color: #8b968f;

    font-size: 10px;
}

.gs-faq-question strong {
    color: #079447;

    font-size: 18px;

    font-weight: 400;
}


/* =========================================
   ANSWER
========================================= */

.gs-faq-answer {
    max-height: 0;

    overflow: hidden;

    transition:
        max-height 0.35s ease;
}

.gs-faq-answer p {
    margin: 0;

    padding:
        0 18px 18px;

    color: #6b7770;

    font-size: 11px;

    line-height: 1.7;
}


/* =========================================
   ACTIVE FAQ
========================================= */

.gs-faq-item.active
.gs-faq-answer {
    max-height: 300px;
}

.gs-faq-item.active
.gs-faq-question strong {
    transform: rotate(45deg);
}


/* =========================================
   SUPPORT SECTION
========================================= */

.gs-support-section {
    max-width: 1100px;

    margin: auto;

    padding:
        0 25px 60px;
}

.gs-support-box {
    display: flex;

    align-items: center;

    gap: 18px;

    padding: 20px 25px;

    background:
        linear-gradient(
            100deg,
            #f1faf3,
            #ffffff
        );

    border: 1px solid #dbeadf;

    border-radius: 8px;
}

.gs-support-icon {
    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #dff4e6;

    border-radius: 50%;

    font-size: 20px;
}

.gs-support-content {
    flex: 1;
}

.gs-support-content h3 {
    margin: 0 0 4px;

    font-size: 15px;
}

.gs-support-content p {
    margin: 0;

    color: #78847d;

    font-size: 12px;
}

.gs-support-contact {
    display: flex;

    flex-direction: column;

    gap: 6px;

    color: #079447;

    font-size: 11px;
}

.gs-support-btn {
    padding: 10px 18px;

    border: 1px solid #9bd1ad;

    border-radius: 5px;

    color: #079447;

    font-size: 10px;

    font-weight: 600;
}





/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .gs-nav {
        display: none;
    }

    .gs-hero-inner {
        padding-top: 50px;

        flex-direction: column;

        text-align: center;
    }

    .gs-hero-content p {
        margin-left: auto;

        margin-right: auto;
    }

    .gs-hero-visual {
        margin-top: 20px;

        transform:
            scale(0.85);
    }

    .gs-faq-tabs {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .gs-faq-grid {
        grid-template-columns: 1fr;
    }

    .gs-support-box {
        flex-wrap: wrap;
    }

}


@media (max-width: 600px) {

    .gs-header-btn {
        display: none;
    }

    .gs-header-inner {
        padding:
            12px 18px;
    }

    .gs-hero-content h1 {
        font-size: 38px;
    }

    .gs-hero-visual {
        width: 100%;

        transform:
            scale(0.65);
    }

    .gs-faq-tabs {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .gs-faq-tab {
        padding: 15px 5px;
    }

    .gs-support-contact {
        width: 100%;
    }

    .gs-support-btn {
        width: 100%;

        text-align: center;
    }

}