/* =========================================================
   GLOBAL RELIEF UNITY
   SUPPORT PAGE
========================================================= */


/* =========================================================
   PAGE BASE
========================================================= */

.support-page {
    width: 100%;
    overflow: hidden;
}

.support-page-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   COMMON SECTION ELEMENTS
========================================================= */

.support-section-eyebrow {
    margin: 0 0 12px;
    color: #16733a;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.support-section-heading {
    max-width: 720px;
    margin: 0;
    color: #142019;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.4px;
}

.support-section-description {
    max-width: 680px;
    margin: 16px 0 0;
    color: #607067;
    font-size: 16px;
    line-height: 1.75;
}


/* =========================================================
   INTRO
========================================================= */

.support-intro-section {
    padding: 72px 0 76px;
    background: #f5f9f6;
}

.support-intro-content {
    max-width: 820px;
}

.support-intro-content h1 {
    max-width: 820px;
    margin: 0;
    color: #142019;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.14;
    letter-spacing: -0.8px;
}

.support-intro-content > p:last-child {
    max-width: 720px;
    margin: 22px 0 0;
    color: #607067;
    font-size: 18px;
    line-height: 1.75;
}


/* =========================================================
   SUPPORT CATEGORIES
========================================================= */

.support-categories-section {
    padding: 88px 0;
    background: #ffffff;
}

.support-section-heading-wrap {
    margin-bottom: 42px;
}

.support-categories-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.support-category-card {
    min-height: 260px;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e1e9e4;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(20, 32, 25, 0.04);
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.support-category-card:hover {
    border-color: #cbdacf;
    box-shadow: 0 14px 34px rgba(20, 32, 25, 0.07);
    transform: translateY(-2px);
}

.support-category-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 24px;
    background: #eef7f1;
    border-radius: 12px;
    color: #16733a;
    font-size: 14px;
    font-weight: 700;
}

.support-category-card h3 {
    margin: 0;
    color: #142019;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.3;
}

.support-category-card p {
    max-width: 500px;
    margin: 12px 0 20px;
    color: #68766e;
    font-size: 15px;
    line-height: 1.7;
}

.support-category-card a {
    display: inline-flex;
    align-items: center;
    color: #16733a;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.support-category-card a:hover {
    text-decoration: underline;
}


/* =========================================================
   COMMON QUESTIONS
========================================================= */

.support-questions-section {
    padding: 88px 0;
    background: #f7faf8;
}

.support-questions-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 70px;
    align-items: start;
}

.support-questions-content {
    padding-top: 8px;
}

.support-questions-content h2 {
    max-width: 520px;
    margin: 0;
    color: #142019;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
}

.support-questions-content > p:not(.support-section-eyebrow) {
    max-width: 520px;
    margin: 18px 0 26px;
    color: #68766e;
    font-size: 15px;
    line-height: 1.75;
}

.support-question-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.support-question-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 17px;
    align-items: start;
    padding: 23px;
    background: #ffffff;
    border: 1px solid #e1e9e4;
    border-radius: 15px;
}

.support-question-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: #eef7f1;
    border-radius: 11px;
    color: #16733a;
    font-size: 12px;
    font-weight: 700;
}

.support-question-item h3 {
    margin: 0;
    color: #142019;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;
}

.support-question-item p {
    margin: 7px 0 0;
    color: #718078;
    font-size: 13px;
    line-height: 1.65;
}


/* =========================================================
   BUTTONS
========================================================= */

.support-primary-button,
.support-secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    text-decoration: none;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.support-primary-button {
    background: #16733a;
    border: 1px solid #16733a;
    color: #ffffff;
}

.support-primary-button:hover {
    background: #125e30;
    border-color: #125e30;
    transform: translateY(-1px);
}

.support-secondary-button {
    background: transparent;
    border: 1px solid #d2ddd6;
    color: #142019;
}

.support-secondary-button:hover {
    background: #f3f7f4;
    border-color: #bfcfc4;
    transform: translateY(-1px);
}


/* =========================================================
   RESPONSIBLE SUPPORT
========================================================= */

.support-responsible-section {
    padding: 88px 0;
    background: #ffffff;
}

.support-responsible-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.support-responsible-card {
    min-height: 215px;
    padding: 28px;
    background: #ffffff;
    border: 1px solid #e1e9e4;
    border-radius: 17px;
}

.support-responsible-number {
    display: block;
    margin-bottom: 24px;
    color: #16733a;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.support-responsible-card h3 {
    margin: 0;
    color: #142019;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
}

.support-responsible-card p {
    margin: 11px 0 0;
    color: #68766e;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   CONTACT SUPPORT
========================================================= */

.support-contact-section {
    padding: 0 0 88px;
    background: #ffffff;
}

.support-contact-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 42px;
    background: #f5f9f6;
    border: 1px solid #e1e9e4;
    border-radius: 20px;
}

.support-contact-content {
    max-width: 700px;
}

.support-contact-content h2 {
    margin: 0;
    color: #142019;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.25;
}

.support-contact-content > p:last-child {
    max-width: 650px;
    margin: 14px 0 0;
    color: #68766e;
    font-size: 15px;
    line-height: 1.7;
}

.support-contact-actions {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
    gap: 10px;
}


/* =========================================================
   FINAL CTA
========================================================= */

.support-final-cta {
    padding: 88px 0;
    background: #142019;
}

.support-final-cta-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.support-final-cta .support-section-eyebrow {
    color: #8ed2a6;
}

.support-final-cta h2 {
    margin: 0;
    color: #ffffff;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.22;
}

.support-final-cta-inner > p:not(.support-section-eyebrow) {
    max-width: 650px;
    margin: 18px auto 0;
    color: #bdc9c1;
    font-size: 16px;
    line-height: 1.75;
}

.support-final-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.support-final-actions .support-primary-button {
    background: #ffffff;
    border-color: #ffffff;
    color: #142019;
}

.support-final-actions .support-primary-button:hover {
    background: #eef5f0;
    border-color: #eef5f0;
}

.support-final-actions .support-secondary-button {
    border-color: rgba(255, 255, 255, 0.28);
    color: #ffffff;
}

.support-final-actions .support-secondary-button:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.45);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .support-page-container {
        width: min(100% - 32px, 760px);
    }


    /* Intro */

    .support-intro-section {
        padding: 60px 0 64px;
    }

    .support-intro-content h1 {
        font-size: 40px;
    }


    /* Categories */

    .support-categories-section {
        padding: 70px 0;
    }

    .support-categories-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .support-category-card {
        min-height: auto;
    }


    /* Questions */

    .support-questions-section {
        padding: 70px 0;
    }

    .support-questions-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .support-questions-content {
        padding-top: 0;
    }


    /* Responsible */

    .support-responsible-section {
        padding: 70px 0;
    }

    .support-responsible-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .support-responsible-card {
        min-height: auto;
    }


    /* Contact */

    .support-contact-section {
        padding-bottom: 70px;
    }

    .support-contact-card {
        align-items: flex-start;
        flex-direction: column;
        gap: 28px;
        padding: 34px;
    }


    /* CTA */

    .support-final-cta {
        padding: 70px 0;
    }

    .support-final-cta h2 {
        font-size: 34px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .support-page-container {
        width: calc(100% - 28px);
    }


    /* Intro */

    .support-intro-section {
        padding: 48px 0 52px;
    }

    .support-section-eyebrow {
        margin-bottom: 10px;
        font-size: 11px;
        letter-spacing: 1.2px;
    }

    .support-intro-content h1 {
        font-size: 32px;
        line-height: 1.18;
        letter-spacing: -0.4px;
    }

    .support-intro-content > p:last-child {
        margin-top: 16px;
        font-size: 15px;
        line-height: 1.7;
    }


    /* Common */

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

    .support-section-description {
        margin-top: 12px;
        font-size: 14px;
        line-height: 1.7;
    }


    /* Categories */

    .support-categories-section {
        padding: 58px 0;
    }

    .support-section-heading-wrap {
        margin-bottom: 28px;
    }

    .support-category-card {
        padding: 24px;
        border-radius: 15px;
    }

    .support-category-icon {
        width: 42px;
        height: 42px;
        margin-bottom: 20px;
        border-radius: 10px;
    }

    .support-category-card h3 {
        font-size: 19px;
    }

    .support-category-card p {
        font-size: 14px;
    }


    /* Questions */

    .support-questions-section {
        padding: 58px 0;
    }

    .support-questions-grid {
        gap: 32px;
    }

    .support-questions-content h2 {
        font-size: 29px;
    }

    .support-questions-content > p:not(.support-section-eyebrow) {
        font-size: 14px;
        line-height: 1.7;
    }

    .support-question-list {
        gap: 12px;
    }

    .support-question-item {
        grid-template-columns: 40px 1fr;
        gap: 12px;
        padding: 18px;
        border-radius: 13px;
    }

    .support-question-number {
        width: 38px;
        height: 38px;
    }

    .support-question-item h3 {
        font-size: 15px;
    }

    .support-question-item p {
        font-size: 12px;
    }


    /* Responsible */

    .support-responsible-section {
        padding: 58px 0;
    }

    .support-responsible-grid {
        gap: 12px;
    }

    .support-responsible-card {
        padding: 23px;
        border-radius: 14px;
    }

    .support-responsible-number {
        margin-bottom: 18px;
    }

    .support-responsible-card h3 {
        font-size: 19px;
    }

    .support-responsible-card p {
        font-size: 13px;
    }


    /* Contact */

    .support-contact-section {
        padding-bottom: 58px;
    }

    .support-contact-card {
        gap: 24px;
        padding: 25px 21px;
        border-radius: 16px;
    }

    .support-contact-content h2 {
        font-size: 27px;
    }

    .support-contact-content > p:last-child {
        font-size: 14px;
        line-height: 1.7;
    }

    .support-contact-actions {
        width: 100%;
        flex-direction: column;
    }


    /* Buttons */

    .support-primary-button,
    .support-secondary-button {
        min-height: 46px;
        padding: 11px 19px;
    }

    .support-contact-actions .support-primary-button,
    .support-contact-actions .support-secondary-button {
        width: 100%;
        box-sizing: border-box;
    }


    /* Final CTA */

    .support-final-cta {
        padding: 60px 0;
    }

    .support-final-cta h2 {
        font-size: 29px;
    }

    .support-final-cta-inner > p:not(.support-section-eyebrow) {
        font-size: 14px;
        line-height: 1.7;
    }

    .support-final-actions {
        flex-direction: column;
        gap: 10px;
        margin-top: 24px;
    }

    .support-final-actions .support-primary-button,
    .support-final-actions .support-secondary-button {
        width: 100%;
        box-sizing: border-box;
    }

}