/* =========================================================
   VerdantCart Carbon Reports — FAQ Page
   File: assets/css/verdantcart-faq.css
   Scope: FAQ public page only
   ========================================================= */

.gc-ai-marketing-page {
    background: #f3f7f5;
    color: #0f172a;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.gc-ai-marketing-page *,
.gc-ai-marketing-page *::before,
.gc-ai-marketing-page *::after {
    box-sizing: border-box;
}

.gc-ai-marketing-page .gc-ai-wrap {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
}

/* =========================================================
   Page shell
   ========================================================= */

.gc-ai-static-page {
    padding: 58px 0 54px;
}

.gc-ai-static-page__brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 20px;
    border-radius: 999px;
    background: #dcfce7;
    color: #166534;
    font-size: 14px;
    font-weight: 850;
    line-height: 1;
    margin-bottom: 24px;
}

.gc-ai-static-page__title {
    max-width: 980px;
    margin: 0 0 24px;
    color: #0f172a;
    font-size: clamp(44px, 6vw, 82px);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -0.055em;
}

.gc-ai-static-page__intro {
    max-width: 920px;
    margin: 0;
    color: #475569;
    font-size: clamp(18px, 2vw, 23px);
    line-height: 1.65;
}

/* =========================================================
   Buttons
   ========================================================= */

.gc-ai-static-page__actions,
.gc-ai-static-page__bottom-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.gc-ai-static-page__actions {
    margin-top: 34px;
}

.gc-ai-static-page__bottom-actions {
    max-width: 900px;
    margin: 44px 0 28px;
    padding-top: 30px;
    border-top: 1px solid #dbe4dd;
}

.gc-ai-btn,
a.gc-ai-btn,
button.gc-ai-btn {
    appearance: none;
    -webkit-appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 30px;
    border-radius: 18px;
    border: 1px solid transparent;
    text-decoration: none;
    font-size: 17px;
    line-height: 1;
    font-weight: 850;
    cursor: pointer;
    white-space: nowrap;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.gc-ai-btn--primary {
    background: #16a34a;
    border-color: #16a34a;
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(22, 163, 74, 0.18);
}

.gc-ai-btn--primary:hover {
    background: #15803d;
    border-color: #15803d;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(21, 128, 61, 0.22);
}

.gc-ai-btn--secondary {
    background: #ffffff;
    border-color: #ffffff;
    color: #0f172a;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.gc-ai-btn--secondary:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #0f172a;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

/* =========================================================
   FAQ cards
   ========================================================= */

.gc-ai-static-page__body {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 900px;
    margin-top: 56px;
}

.gc-ai-faq-item {
    background: #ffffff;
    border: 1px solid #dbe4dd;
    border-radius: 30px;
    padding: 36px 38px;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
}

.gc-ai-faq-item h2 {
    margin: 0 0 18px;
    padding: 0;
    color: #0f172a;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.gc-ai-faq-item p {
    margin: 0;
    padding: 0;
    color: #334155;
    font-size: 19px;
    line-height: 1.75;
}

/* =========================================================
   Footer — full width, compact, landing-page style
   ========================================================= */

.gc-ai-marketing-page .gc-ai-footer {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 0;
    background: #ffffff;
    border-top: 1px solid #dbe4dd;
    padding: 38px 0 28px;
}

.gc-ai-marketing-page .gc-ai-footer .gc-ai-wrap {
    width: min(1180px, calc(100% - 64px));
    max-width: 1180px;
    margin: 0 auto;
    padding: 0;
}

.gc-ai-footer-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 36px;
    padding: 0 0 22px;
    border-bottom: 1px solid #e2e8f0;
}

.gc-ai-footer-brand {
    max-width: 470px;
}

.gc-ai-footer-logo {
    margin: 0 0 10px;
    color: #0f172a;
    font-size: 23px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -0.025em;
}

.gc-ai-footer-text {
    margin: 0;
    max-width: 460px;
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
}

.gc-ai-footer-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 18px 22px;
    padding-top: 4px;
}

.gc-ai-footer-nav a {
    color: #0f172a;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 850;
}

.gc-ai-footer-nav a:hover {
    color: #16a34a;
}

.gc-ai-footer-bottom {
    margin: 0;
    padding: 18px 0 0;
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.4;
}

/* =========================================================
   Remove theme spacing around custom page/footer
   ========================================================= */

body .gc-ai-marketing-page {
    margin-bottom: 0;
    padding-bottom: 0;
}

body .gc-ai-marketing-page+footer,
body .gc-ai-marketing-page+.site-footer {
    margin-top: 0;
    padding-top: 0;
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 800px) {
    .gc-ai-marketing-page .gc-ai-wrap {
        width: min(100%, calc(100% - 32px));
    }

    .gc-ai-static-page {
        padding: 34px 0 24px;
    }

    .gc-ai-static-page__title {
        font-size: clamp(38px, 11vw, 56px);
    }

    .gc-ai-static-page__intro {
        font-size: 17px;
    }

    .gc-ai-static-page__actions,
    .gc-ai-static-page__bottom-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .gc-ai-btn,
    a.gc-ai-btn,
    button.gc-ai-btn {
        width: 100%;
        min-height: 54px;
    }

    .gc-ai-static-page__body {
        gap: 20px;
        margin-top: 42px;
    }

    .gc-ai-faq-item {
        padding: 26px 22px;
        border-radius: 24px;
    }

    .gc-ai-faq-item h2 {
        font-size: 28px;
    }

    .gc-ai-faq-item p {
        font-size: 17px;
        line-height: 1.68;
    }

    .gc-ai-static-page__bottom-actions {
        margin: 38px 0 24px;
    }

    .gc-ai-marketing-page .gc-ai-footer {
        padding: 34px 0 26px;
    }

    .gc-ai-marketing-page .gc-ai-footer .gc-ai-wrap {
        width: min(100%, calc(100% - 32px));
    }

    .gc-ai-footer-inner {
        flex-direction: column;
        gap: 22px;
        padding-bottom: 22px;
    }

    .gc-ai-footer-nav {
        justify-content: flex-start;
        gap: 14px 16px;
    }
}

@media (max-width: 430px) {

    .gc-ai-marketing-page .gc-ai-wrap,
    .gc-ai-marketing-page .gc-ai-footer .gc-ai-wrap {
        width: min(100%, calc(100% - 28px));
    }

    .gc-ai-static-page__title {
        font-size: 38px;
    }

    .gc-ai-faq-item h2 {
        font-size: 25px;
    }

    .gc-ai-faq-item p {
        font-size: 16px;
    }
}