/* =========================================================
   VerdantCart AI Theme Homepage — Clean Final CSS
   File: assets/css/verdantcart-ai.css
   Scope: front-page.php only
   ========================================================= */

:root {
    --gc-green-primary: #16a34a;
    --gc-green-dark: #15803d;
    --gc-green-light: #22c55e;
    --gc-green-subtle: #dcfce7;

    --gc-gray-50: #f8fafc;
    --gc-gray-100: #f1f5f9;
    --gc-gray-200: #e2e8f0;
    --gc-gray-300: #cbd5e1;
    --gc-gray-400: #94a3b8;
    --gc-gray-500: #64748b;
    --gc-gray-600: #475569;
    --gc-gray-700: #334155;
    --gc-gray-800: #1e293b;
    --gc-gray-900: #0f172a;

    --gc-shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
    --gc-shadow-md: 0 8px 24px rgba(15, 23, 42, 0.06);
    --gc-shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.08);

    --gc-radius-sm: 10px;
    --gc-radius-md: 14px;
    --gc-radius-lg: 18px;
    --gc-radius-xl: 24px;

    --gc-wrap: 1200px;
}

/* =========================================================
   Base
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--gc-gray-50);
    color: var(--gc-gray-900);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img,
svg,
canvas {
    max-width: 100%;
    height: auto;
    display: block;
}

.gc-landing {
    width: 100%;
    overflow-x: hidden;
    background: var(--gc-gray-50);
}

.gc-wrap,
.gc-hero__card,
.gc-compat__inner,
.gc-section,
.gc-footer__container {
    width: min(var(--gc-wrap), calc(100% - 32px));
    margin-left: auto;
    margin-right: auto;
}

/* =========================================================
   Typography
   ========================================================= */

.gc-h2 {
    margin: 0 0 14px;
    color: var(--gc-gray-900);
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -0.035em;
}

.gc-h3 {
    margin: 0 0 10px;
    color: var(--gc-gray-900);
    font-size: clamp(22px, 3vw, 28px);
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.gc-muted {
    color: var(--gc-gray-600);
    line-height: 1.7;
}

/* =========================================================
   Buttons
   ========================================================= */

.gc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border-radius: var(--gc-radius-md);
    border: 1px solid transparent;
    text-decoration: none;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    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-btn:hover {
    transform: translateY(-1px);
}

.gc-btn--primary {
    background: linear-gradient(135deg, var(--gc-green-primary), var(--gc-green-dark));
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(22, 163, 74, 0.22);
}

.gc-btn--primary:hover {
    background: linear-gradient(135deg, var(--gc-green-dark), #166534);
    color: #ffffff;
}

.gc-btn--secondary {
    background: #ffffff;
    color: var(--gc-gray-900);
    border-color: var(--gc-gray-300);
}

.gc-btn--secondary:hover {
    background: var(--gc-gray-100);
    color: var(--gc-gray-900);
    border-color: var(--gc-gray-400);
}

/* =========================================================
   Hero
   ========================================================= */

.gc-hero {
    padding: 78px 0 24px;
    background: linear-gradient(180deg, #eef6f0 0%, #f8fafc 100%);
}

.gc-hero__card {
    text-align: center;
}

.gc-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--gc-green-subtle);
    color: var(--gc-green-dark);
    font-size: 14px;
    font-weight: 850;
    line-height: 1;
}

.gc-hero__title {
    max-width: 980px;
    margin: 0 auto 18px;
    color: var(--gc-gray-900);
    font-size: clamp(42px, 7vw, 76px);
    line-height: 0.98;
    font-weight: 900;
    letter-spacing: -0.055em;
}

.gc-hero__sub {
    max-width: 900px;
    margin: 0 auto 30px;
    color: var(--gc-gray-600);
    font-size: clamp(18px, 2.2vw, 22px);
    line-height: 1.6;
}

.gc-hero__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.gc-hero__actions .gc-btn {
    min-width: 150px;
}

.gc-hero__trust {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 20px;
    color: var(--gc-gray-700);
    font-size: 14px;
}

.gc-hero__trust-item {
    position: relative;
    padding-left: 14px;
}

.gc-hero__trust-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gc-green-light);
}

.gc-trustbar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 18px;
}

.gc-trustbar__item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border: 1px solid var(--gc-gray-200);
    border-radius: 999px;
    background: #ffffff;
    box-shadow: var(--gc-shadow-sm);
    color: var(--gc-gray-700);
    font-size: 13px;
}

.gc-hero__meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 0;
    color: var(--gc-gray-500);
    font-size: 14px;
}

.gc-dot {
    color: var(--gc-gray-300);
}

/* =========================================================
   Brand banner below hero
   ========================================================= */

.gc-brand-banner-section {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto 34px;
    padding: 0;
    background: transparent;
}

.gc-brand-banner-wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.gc-brand-banner {
    margin: 0;
    overflow: hidden;
    border: 1px solid #dbe4dd;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.07);
}

.gc-brand-banner img {
    display: block;
    width: 100%;
    height: auto;
}

@media (min-width: 900px) {
    .gc-brand-banner img {
        max-height: 360px;
        object-fit: cover;
        object-position: center;
    }
}

/* =========================================================
   Compatibility row
   ========================================================= */

.gc-compat {
    padding: 18px 0 30px;
}

.gc-compat__inner {
    padding: 28px;
    border: 1px solid #dbe4dd;
    border-radius: var(--gc-radius-xl);
    background: #ffffff;
    box-shadow: var(--gc-shadow-sm);
}

.gc-compat__label {
    display: block;
    margin-bottom: 16px;
    color: var(--gc-gray-500);
    font-size: 13px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.gc-compat__items {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.gc-compat__item {
    padding: 14px 16px;
    border: 1px solid var(--gc-gray-200);
    border-radius: var(--gc-radius-md);
    background: var(--gc-gray-50);
    color: var(--gc-gray-700);
    font-size: 14px;
    text-align: center;
}

/* =========================================================
   Sections
   ========================================================= */

.gc-section {
    padding: 64px 0;
}

.gc-section:first-of-type {
    padding-top: 44px;
}

.gc-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.gc-step {
    display: flex;
    gap: 16px;
    padding: 24px;
    border: 1px solid #dbe4dd;
    border-radius: var(--gc-radius-lg);
    background: #ffffff;
    box-shadow: var(--gc-shadow-sm);
}

.gc-step__n {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gc-green-primary), var(--gc-green-dark));
    color: #ffffff;
    font-weight: 850;
}

.gc-step__t {
    margin-bottom: 8px;
    color: var(--gc-gray-900);
    font-size: 18px;
    font-weight: 800;
}

.gc-step__d {
    color: var(--gc-gray-600);
    font-size: 15px;
    line-height: 1.7;
}

.gc-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.gc-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 64px;
    padding: 16px 18px;
    border: 1px solid #dbe4dd;
    border-radius: var(--gc-radius-md);
    background: #ffffff;
    box-shadow: var(--gc-shadow-sm);
    color: var(--gc-gray-800);
    font-size: 15px;
}

.gc-feature::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    border-radius: 999px;
    background: var(--gc-green-primary);
    color: #ffffff;
    font-size: 12px;
    font-weight: 850;
}

.gc-trustgrid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.gc-trustcard {
    padding: 24px;
    border: 1px solid #dbe4dd;
    border-radius: var(--gc-radius-lg);
    background: #ffffff;
    box-shadow: var(--gc-shadow-sm);
}

.gc-trustcard__t {
    margin-bottom: 10px;
    color: var(--gc-gray-900);
    font-size: 18px;
    font-weight: 800;
}

.gc-trustcard__d {
    color: var(--gc-gray-600);
    font-size: 15px;
    line-height: 1.7;
}

/* =========================================================
   Screenshot section
   ========================================================= */

.gc-productSection {
    padding-top: 36px;
}

.gc-productHead {
    max-width: 760px;
    margin: 0 auto 28px;
    text-align: center;
}

.gc-productWindow {
    max-width: 1100px;
    margin: 0 auto;
}

.gc-productImage {
    margin: 0;
    overflow: hidden;
    border: 1px solid #dbe4dd;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: var(--gc-shadow-lg);
}

/* =========================================================
   CTA sections
   ========================================================= */

.gc-cta {
    width: min(var(--gc-wrap), calc(100% - 32px));
    margin: 0 auto;
}

.gc-section>.gc-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 34px 38px;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--gc-green-primary), var(--gc-green-dark));
    color: #ffffff;
    box-shadow: 0 16px 36px rgba(22, 163, 74, 0.22);
}

.gc-section>.gc-cta .gc-h3,
.gc-section>.gc-cta .gc-muted {
    color: #ffffff;
}

.gc-section>.gc-cta .gc-btn {
    min-width: 140px;
    background: #ffffff;
    color: var(--gc-green-dark);
    border-color: #ffffff;
}

.gc-cta__inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: stretch;
}

.gc-cta__card,
.gc-testimonial__card {
    border: 1px solid #dbe4dd;
    border-radius: var(--gc-radius-xl);
    background: #ffffff;
    box-shadow: var(--gc-shadow-md);
}

.gc-cta__card {
    padding: 36px;
}

.gc-cta__eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--gc-green-primary);
    font-size: 13px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.gc-cta__title {
    margin: 0 0 14px;
    color: var(--gc-gray-900);
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -0.035em;
}

.gc-cta__subtitle {
    margin: 0 0 22px;
    color: var(--gc-gray-600);
    font-size: 17px;
    line-height: 1.7;
}

.gc-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.gc-cta__fineprint {
    color: var(--gc-gray-500);
    font-size: 13px;
}

.gc-testimonial__card {
    height: 100%;
    padding: 32px;
}

.gc-testimonial__quoteMark {
    margin-bottom: 8px;
    color: var(--gc-green-subtle);
    font-size: 64px;
    line-height: 1;
}

.gc-testimonial__quote {
    margin: 0 0 22px;
    color: var(--gc-gray-700);
    font-size: 16px;
    line-height: 1.8;
    font-style: italic;
}

.gc-testimonial__meta {
    padding-top: 16px;
    border-top: 1px solid var(--gc-gray-200);
}

.gc-testimonial__name {
    margin-bottom: 4px;
    color: var(--gc-gray-900);
    font-size: 14px;
    font-weight: 800;
}

.gc-testimonial__company {
    color: var(--gc-gray-500);
    font-size: 13px;
}

.gc-cta__bullets {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 18px;
}

.gc-cta__bullets span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gc-gray-700);
    font-size: 14px;
}

.gc-cta__bullets span::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: var(--gc-green-primary);
    color: #ffffff;
    font-size: 11px;
    font-weight: 850;
}

/* =========================================================
   Install section
   ========================================================= */

.gc-install {
    width: min(var(--gc-wrap), calc(100% - 32px));
    margin: 0 auto;
    padding: 36px;
    border: 1px solid #dbe4dd;
    border-radius: var(--gc-radius-xl);
    background: #ffffff;
    box-shadow: var(--gc-shadow-md);
}

.gc-install__steps {
    display: grid;
    gap: 18px;
    margin: 24px 0 28px;
}

.gc-install__step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.gc-install__n {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gc-green-primary), var(--gc-green-dark));
    color: #ffffff;
    font-weight: 850;
}

.gc-install__step strong {
    display: block;
    margin-bottom: 4px;
    color: var(--gc-gray-900);
}

.gc-install__step p {
    margin: 0;
    color: var(--gc-gray-600);
    line-height: 1.7;
}

/* =========================================================
   Footer
   ========================================================= */

.gc-footer {
    margin-top: 64px;
    border-top: 1px solid #dbe4dd;
    background: #ffffff;
}

.gc-footer__container {
    width: min(var(--gc-wrap), calc(100% - 32px));
    margin: 0 auto;
    padding: 34px 0 24px;
}

.gc-footer__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.gc-footer__brandWrap {
    max-width: 430px;
}

.gc-footer__brand {
    margin-bottom: 8px;
    color: var(--gc-gray-900);
    font-size: 21px;
    font-weight: 900;
    letter-spacing: -0.025em;
}

.gc-footer__description {
    max-width: 430px;
    color: var(--gc-gray-500);
    font-size: 15px;
    line-height: 1.7;
}

.gc-footer__links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 18px;
}

.gc-footer__links a {
    color: var(--gc-gray-900);
    text-decoration: none;
    font-size: 14px;
    font-weight: 750;
    white-space: nowrap;
}

.gc-footer__links a:hover {
    color: var(--gc-green-primary);
}

.gc-footer__bottom {
    padding-top: 18px;
    border-top: 1px solid var(--gc-gray-100);
    color: var(--gc-gray-400);
    font-size: 13px;
}

/* =========================================================
   Shared custom footer used in landing template
   ========================================================= */

.gc-ai-footer {
    margin-top: 64px;
    padding: 34px 0 28px;
    border-top: 1px solid #dbe4dd;
    background: #ffffff;
    overflow-x: hidden;
}

.gc-ai-footer .gc-ai-wrap,
.gc-ai-footer-inner,
.gc-ai-footer-bottom {
    width: min(1200px, calc(100% - 32px));
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.gc-ai-footer-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
    padding-bottom: 22px;
    border-bottom: 1px solid #e5e7eb;
}

.gc-ai-footer-brand {
    max-width: 430px;
}

.gc-ai-footer-logo {
    margin-bottom: 10px;
    color: #0f172a;
    font-size: 22px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.025em;
}

.gc-ai-footer-text {
    margin: 0;
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
}

.gc-ai-footer-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 14px 18px;
}

.gc-ai-footer-nav a {
    color: #0f172a;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 750;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.gc-ai-footer-nav a:hover {
    color: #16a34a;
}

.gc-ai-footer-bottom {
    padding-top: 18px;
    color: #94a3b8;
    font-size: 14px;
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1024px) {

    .gc-steps,
    .gc-features,
    .gc-trustgrid,
    .gc-compat__items {
        grid-template-columns: 1fr 1fr;
    }

    .gc-cta__inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .gc-wrap,
    .gc-hero__card,
    .gc-compat__inner,
    .gc-section,
    .gc-footer__container,
    .gc-cta,
    .gc-install,
    .gc-ai-footer .gc-ai-wrap,
    .gc-ai-footer-inner,
    .gc-ai-footer-bottom {
        width: calc(100% - 28px);
        max-width: none;
    }

    .gc-hero {
        padding-top: 54px;
        padding-bottom: 18px;
    }

    .gc-hero__title {
        font-size: 42px;
        line-height: 1.03;
    }

    .gc-hero__sub {
        font-size: 17px;
        line-height: 1.6;
    }

    .gc-hero__actions,
    .gc-cta__actions {
        width: 100%;
        flex-direction: column;
    }

    .gc-btn {
        width: 100%;
        min-height: 52px;
    }

    .gc-trustbar__item {
        width: 100%;
        justify-content: center;
    }

    .gc-brand-banner-section {
        width: calc(100% - 28px);
        margin-bottom: 28px;
    }

    .gc-brand-banner {
        border-radius: 22px;
    }

    .gc-compat {
        padding-top: 10px;
    }

    .gc-steps,
    .gc-features,
    .gc-trustgrid,
    .gc-compat__items,
    .gc-cta__inner {
        grid-template-columns: 1fr;
    }

    .gc-section {
        padding-top: 46px;
        padding-bottom: 46px;
    }

    .gc-step {
        flex-direction: row;
        padding: 22px;
    }

    .gc-section>.gc-cta {
        width: calc(100% - 28px);
        flex-direction: column;
        align-items: stretch;
        padding: 26px;
        border-radius: 24px;
    }

    .gc-cta__card,
    .gc-testimonial__card,
    .gc-install,
    .gc-compat__inner {
        padding: 24px;
        border-radius: 22px;
    }

    .gc-footer__top,
    .gc-ai-footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .gc-footer__links,
    .gc-ai-footer-nav {
        justify-content: flex-start;
        gap: 12px 16px;
    }

    .gc-footer__links a,
    .gc-ai-footer-nav a {
        white-space: normal;
    }
}

@media (max-width: 480px) {

    .gc-wrap,
    .gc-hero__card,
    .gc-compat__inner,
    .gc-section,
    .gc-footer__container,
    .gc-cta,
    .gc-install,
    .gc-ai-footer .gc-ai-wrap,
    .gc-ai-footer-inner,
    .gc-ai-footer-bottom {
        width: calc(100% - 24px);
    }

    .gc-hero__title {
        font-size: 36px;
    }

    .gc-h2 {
        font-size: 29px;
    }

    .gc-h3,
    .gc-cta__title {
        font-size: 25px;
    }

    .gc-brand-banner-section {
        width: calc(100% - 24px);
    }

    .gc-brand-banner {
        border-radius: 18px;
    }

    .gc-footer__links,
    .gc-ai-footer-nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        gap: 12px;
    }

    .gc-footer__links a,
    .gc-ai-footer-nav a {
        display: block;
    }
}

/* =========================================================
   Final banner-to-compat spacing polish
   ========================================================= */

.gc-brand-banner-section {
    margin-bottom: 24px !important;
}

.gc-compat {
    padding-top: 0 !important;
}

@media (max-width: 768px) {
    .gc-brand-banner-section {
        margin-bottom: 20px !important;
    }
}