/* ==========================================================================
   GoSeller SaaS Landing Page
   --------------------------------------------------------------------------
   LANDING-PAGE-ONLY frontend styles. Fully isolated from the 6Valley
   marketplace theme (theme.css / home.css). Nothing here overrides the
   marketplace, admin, vendor, checkout or product-detail UIs — it is only
   loaded by resources/themes/default/layouts/front-end/landing.blade.php.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
    --gs-primary: #5b3df5;
    --gs-primary-600: #4f31e0;
    --gs-primary-700: #4127c4;
    --gs-primary-050: #f1eefe;
    --gs-accent: #10b981;
    --gs-accent-050: #e7f8f1;
    --gs-amber: #f59e0b;
    --gs-ink: #0f172a;
    --gs-body: #475569;
    --gs-muted: #64748b;
    --gs-line: #e6e8ef;
    --gs-bg: #ffffff;
    --gs-bg-soft: #f7f8fc;
    --gs-bg-tint: #f3f1fe;
    --gs-white: #ffffff;
    --gs-radius: 18px;
    --gs-radius-lg: 26px;
    --gs-radius-sm: 12px;
    --gs-shadow-sm: 0 2px 8px rgba(15, 23, 42, .06);
    --gs-shadow: 0 18px 40px -18px rgba(23, 16, 74, .28);
    --gs-shadow-lg: 0 40px 80px -30px rgba(23, 16, 74, .38);
    --gs-gradient: linear-gradient(135deg, #6d4bff 0%, #5b3df5 45%, #7c3aed 100%);
    --gs-gradient-soft: linear-gradient(180deg, #f6f4ff 0%, #ffffff 100%);
    --gs-font: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}

/* ---------- Base ---------- */
.gs-lp * { box-sizing: border-box; }
.gs-lp {
    font-family: var(--gs-font);
    color: var(--gs-body);
    background: var(--gs-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    margin: 0;
}
.gs-lp img { max-width: 100%; display: block; }
.gs-lp a { text-decoration: none; transition: color .2s ease; }
/* Zero-specificity default so every button/link with its own color rule wins.
   (Using :where keeps this from overriding .gs-btn--primary etc.) */
:where(.gs-lp a) { color: inherit; }
.gs-lp h1, .gs-lp h2, .gs-lp h3, .gs-lp h4 {
    color: var(--gs-ink);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 .5rem;
}
.gs-lp p { margin: 0 0 1rem; }
.gs-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}
.gs-section { padding: 84px 0; position: relative; }
.gs-section--tint { background: var(--gs-bg-soft); }
.gs-section--dark { background: #0b1020; }

/* ---------- Buttons ---------- */
.gs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
    padding: 15px 26px;
    border-radius: 999px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
    white-space: nowrap;
}
.gs-btn svg { width: 18px; height: 18px; }
.gs-btn--primary {
    background: var(--gs-gradient);
    color: #fff;
    box-shadow: 0 14px 26px -12px rgba(91, 61, 245, .8);
}
.gs-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 20px 34px -12px rgba(91, 61, 245, .85); color: #fff; }
.gs-btn--ghost {
    background: #fff;
    color: var(--gs-ink);
    border-color: var(--gs-line);
}
.gs-btn--ghost:hover { border-color: var(--gs-primary); color: var(--gs-primary); transform: translateY(-2px); }
.gs-btn--light { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.35); }
.gs-btn--light:hover { background: rgba(255,255,255,.24); color: #fff; }
.gs-btn--white { background: #fff; color: var(--gs-primary-700); }
.gs-btn--white:hover { transform: translateY(-2px); color: var(--gs-primary-700); }
.gs-btn--lg { padding: 17px 34px; font-size: 1.05rem; }
.gs-btn--block { width: 100%; }

/* ---------- Header ---------- */
.gs-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .82);
    backdrop-filter: saturate(160%) blur(14px);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.gs-header.is-stuck {
    border-bottom-color: var(--gs-line);
    box-shadow: 0 8px 24px -18px rgba(15, 23, 42, .4);
}
.gs-nav {
    display: flex;
    align-items: center;
    gap: 16px;
    height: 76px;
    flex-wrap: nowrap;
}
.gs-brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.35rem; color: var(--gs-ink); letter-spacing: -.02em; flex: none; }
.gs-brand img { height: 38px; max-height: 44px; width: auto; }
.gs-brand .gs-brand-mark {
    width: 38px; height: 38px; border-radius: 11px;
    background: var(--gs-gradient); color: #fff;
    display: grid; place-items: center; font-weight: 800; font-size: 1.2rem;
    box-shadow: 0 8px 16px -8px rgba(91,61,245,.9);
}
.gs-brand b { color: var(--gs-primary); }
.gs-nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
    flex-wrap: nowrap;
}
.gs-nav-links a {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    font-weight: 600;
    font-size: .93rem;
    color: #3a4257;
    border-radius: 10px;
    white-space: nowrap;
    line-height: 1;
}
.gs-nav-links a:hover { color: var(--gs-primary); background: var(--gs-primary-050); }
.gs-nav-actions { display: flex; align-items: center; gap: 8px; flex: none; }
.gs-nav-actions .gs-btn { white-space: nowrap; }
.gs-nav-actions .gs-btn { padding: 11px 20px; font-size: .93rem; }
.gs-link-login { font-weight: 700; color: var(--gs-ink); padding: 10px 8px; }
.gs-link-login:hover { color: var(--gs-primary); }

.gs-burger {
    display: none;
    width: 46px; height: 46px;
    border: 1px solid var(--gs-line);
    background: #fff;
    border-radius: 12px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
}
.gs-burger span { display: block; width: 20px; height: 2px; background: var(--gs-ink); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.gs-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.gs-burger.is-open span:nth-child(2) { opacity: 0; }
.gs-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.gs-mobile-menu {
    position: fixed;
    inset: 76px 0 0 0;
    background: #fff;
    z-index: 999;
    padding: 22px;
    transform: translateX(100%);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.gs-mobile-menu.is-open { transform: translateX(0); }
.gs-mobile-menu a.gs-m-link {
    padding: 14px 12px;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--gs-ink);
    border-bottom: 1px solid var(--gs-line);
}
.gs-mobile-menu .gs-m-cta { margin-top: 16px; display: flex; flex-direction: column; gap: 12px; }

/* ---------- Hero ---------- */
.gs-hero {
    position: relative;
    overflow: hidden;
    padding: 70px 0 90px;
    background:
        radial-gradient(1200px 520px at 78% -8%, rgba(124, 58, 237, .16), transparent 60%),
        radial-gradient(900px 460px at 8% 4%, rgba(16, 185, 129, .12), transparent 55%),
        var(--gs-gradient-soft);
}
.gs-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 48px;
    align-items: center;
}
.gs-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: .8rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--gs-primary-700);
    background: #fff;
    border: 1px solid var(--gs-line);
    padding: 7px 14px;
    border-radius: 999px;
    box-shadow: var(--gs-shadow-sm);
    margin-bottom: 22px;
}
.gs-eyebrow .gs-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gs-accent); box-shadow: 0 0 0 4px var(--gs-accent-050); }
.gs-hero h1 {
    font-size: clamp(2.2rem, 4.6vw, 3.5rem);
    margin-bottom: 18px;
}
.gs-hero h1 .gs-hl { color: var(--gs-primary); position: relative; white-space: nowrap; }
.gs-hero-sub {
    font-size: 1.15rem;
    color: var(--gs-body);
    max-width: 560px;
    margin-bottom: 28px;
}
.gs-hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.gs-trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--gs-muted);
    font-weight: 600;
    font-size: .9rem;
}
.gs-trust-strip li { display: flex; align-items: center; gap: 7px; }
.gs-trust-strip svg { width: 17px; height: 17px; color: var(--gs-accent); }

.gs-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 40px;
}
.gs-stat-card {
    background: #fff;
    border: 1px solid var(--gs-line);
    border-radius: var(--gs-radius-sm);
    padding: 16px 14px;
    box-shadow: var(--gs-shadow-sm);
    text-align: center;
}
.gs-stat-card .gs-stat-ico {
    width: 38px; height: 38px; margin: 0 auto 8px;
    border-radius: 10px; display: grid; place-items: center;
    background: var(--gs-primary-050); color: var(--gs-primary);
}
.gs-stat-card .gs-stat-ico svg { width: 20px; height: 20px; }
.gs-stat-card span { font-weight: 700; font-size: .86rem; color: var(--gs-ink); line-height: 1.3; display: block; }

/* ---------- Hero visual (CSS mockups) ---------- */
.gs-hero-visual { position: relative; min-height: 440px; }
.gs-mock-browser {
    background: #fff;
    border: 1px solid var(--gs-line);
    border-radius: 16px;
    box-shadow: var(--gs-shadow-lg);
    overflow: hidden;
    transform: rotate(-1deg);
}
.gs-mock-bar {
    display: flex; align-items: center; gap: 6px;
    padding: 11px 14px; background: #f4f5fb; border-bottom: 1px solid var(--gs-line);
}
.gs-mock-bar i { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.gs-mock-bar i:nth-child(1){ background:#ff5f57; } .gs-mock-bar i:nth-child(2){ background:#febc2e; } .gs-mock-bar i:nth-child(3){ background:#28c840; }
.gs-mock-url { margin-left: 10px; flex: 1; background: #fff; border: 1px solid var(--gs-line); border-radius: 7px; font-size: .72rem; color: var(--gs-muted); padding: 5px 12px; font-weight: 600; }
.gs-mock-store { padding: 16px; }
.gs-mock-store-head {
    display: flex; align-items: center; justify-content: space-between;
    padding-bottom: 12px; margin-bottom: 12px; border-bottom: 1px solid var(--gs-line);
}
.gs-mock-store-head .gs-ms-brand { display: flex; align-items: center; gap: 8px; font-weight: 800; color: var(--gs-ink); font-size: .95rem; }
.gs-mock-store-head .gs-ms-brand .m { width: 26px; height: 26px; border-radius: 8px; background: var(--gs-gradient); }
.gs-mock-store-head .gs-ms-nav { display: flex; gap: 10px; }
.gs-mock-store-head .gs-ms-nav span { width: 34px; height: 7px; border-radius: 4px; background: #eceef6; }
.gs-mock-hero-banner { height: 74px; border-radius: 12px; background: linear-gradient(120deg, var(--gs-primary), #7c3aed); position: relative; overflow: hidden; margin-bottom: 14px; }
.gs-mock-hero-banner::after { content:""; position:absolute; right:-20px; bottom:-20px; width:90px; height:90px; border-radius:50%; background: rgba(255,255,255,.16); }
.gs-mock-hero-banner .b1 { position:absolute; top:16px; left:16px; width:120px; height:9px; border-radius:5px; background: rgba(255,255,255,.85); }
.gs-mock-hero-banner .b2 { position:absolute; top:32px; left:16px; width:80px; height:7px; border-radius:5px; background: rgba(255,255,255,.5); }
.gs-mock-hero-banner .b3 { position:absolute; bottom:14px; left:16px; width:56px; height:18px; border-radius:6px; background: #fff; }
.gs-mock-products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.gs-mock-prod { border: 1px solid var(--gs-line); border-radius: 10px; padding: 8px; }
.gs-mock-prod .thumb { height: 46px; border-radius: 7px; background: #eef0f8; margin-bottom: 7px; }
.gs-mock-prod .l1 { height: 6px; width: 90%; border-radius: 4px; background: #e7e9f2; margin-bottom: 5px; }
.gs-mock-prod .l2 { height: 6px; width: 55%; border-radius: 4px; background: #e7e9f2; margin-bottom: 7px; }
.gs-mock-prod .price { font-size: .68rem; font-weight: 800; color: var(--gs-primary); }

/* phone mock overlapping */
.gs-mock-phone {
    position: absolute;
    right: -6px;
    bottom: -34px;
    width: 176px;
    background: #0f172a;
    border-radius: 26px;
    padding: 8px;
    box-shadow: var(--gs-shadow-lg);
    transform: rotate(4deg);
    border: 1px solid #232a41;
}
.gs-mock-phone .screen { background: #fff; border-radius: 20px; overflow: hidden; }
.gs-mock-phone .p-top { background: var(--gs-gradient); padding: 14px 12px 16px; color:#fff; }
.gs-mock-phone .p-top small { font-size: .58rem; opacity: .85; font-weight:600; }
.gs-mock-phone .p-top .earn { font-size: 1.05rem; font-weight: 800; margin-top: 2px; }
.gs-mock-phone .p-body { padding: 12px; display: flex; flex-direction: column; gap: 9px; }
.gs-mock-phone .order-row { display: flex; align-items: center; gap: 8px; border: 1px solid var(--gs-line); border-radius: 9px; padding: 7px; }
.gs-mock-phone .order-row .ic { width: 24px; height: 24px; border-radius: 7px; background: var(--gs-accent-050); color: var(--gs-accent); display:grid; place-items:center; flex: none; }
.gs-mock-phone .order-row .ic svg { width: 13px; height: 13px; }
.gs-mock-phone .order-row .tx { flex: 1; }
.gs-mock-phone .order-row .tx .a { height: 6px; width: 70%; background:#e7e9f2; border-radius:4px; margin-bottom:4px; }
.gs-mock-phone .order-row .tx .b { height: 5px; width: 40%; background:#eef0f8; border-radius:4px; }
.gs-mock-phone .order-row .badge { font-size: .5rem; font-weight: 800; color: var(--gs-accent); background: var(--gs-accent-050); padding: 3px 6px; border-radius: 5px; }

.gs-float-card {
    position: absolute;
    background: #fff;
    border: 1px solid var(--gs-line);
    border-radius: 14px;
    box-shadow: var(--gs-shadow);
    padding: 11px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: .82rem;
    color: var(--gs-ink);
    z-index: 3;
}
.gs-float-card .fc-ico { width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center; flex: none; }
.gs-float-card .fc-ico svg { width: 17px; height: 17px; }
.gs-float-card small { display: block; font-weight: 600; font-size: .68rem; color: var(--gs-muted); }
.gs-float-card.fc-1 { top: -14px; left: -14px; }
.gs-float-card.fc-1 .fc-ico { background: var(--gs-accent-050); color: var(--gs-accent); }
.gs-float-card.fc-2 { bottom: 40px; left: -26px; }
.gs-float-card.fc-2 .fc-ico { background: #fff2dc; color: var(--gs-amber); }

/* ---------- Section heading ---------- */
.gs-head { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.gs-head .gs-kicker {
    display: inline-block;
    font-weight: 800; font-size: .78rem; letter-spacing: .09em; text-transform: uppercase;
    color: var(--gs-primary); background: var(--gs-primary-050);
    padding: 6px 14px; border-radius: 999px; margin-bottom: 16px;
}
.gs-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); }
.gs-head p { font-size: 1.08rem; color: var(--gs-body); margin-top: 8px; }
.gs-head--left { text-align: left; margin-left: 0; }

/* ---------- Logos / marquee trust ---------- */
.gs-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 34px; opacity: .9; }
.gs-logos .gs-chip {
    display: inline-flex; align-items: center; gap: 8px;
    font-weight: 700; color: var(--gs-muted); font-size: .92rem;
}
.gs-logos .gs-chip svg { width: 20px; height: 20px; color: var(--gs-primary); }

/* ---------- Problem cards ---------- */
.gs-prob-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gs-prob-card {
    background: #fff; border: 1px solid var(--gs-line); border-radius: var(--gs-radius);
    padding: 28px 24px; box-shadow: var(--gs-shadow-sm);
}
.gs-prob-card h3 { font-size: 1.18rem; display: flex; align-items: center; gap: 10px; }
.gs-prob-card h3 .x { width: 30px; height: 30px; border-radius: 9px; background: #fdeaea; color: #e5484d; display:grid; place-items:center; flex:none; }
.gs-prob-card h3 .x svg { width: 16px; height: 16px; }
.gs-prob-card p { font-size: .96rem; margin: 0; }
.gs-solve {
    margin-top: 30px; text-align: center;
    background: var(--gs-accent-050); border: 1px solid #cdeede;
    border-radius: var(--gs-radius); padding: 22px;
    font-weight: 700; color: #0b7a56; font-size: 1.05rem;
}
.gs-solve b { color: #065f46; }

/* ---------- Role cards ---------- */
.gs-role-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gs-role-card {
    position: relative; overflow: hidden;
    border-radius: var(--gs-radius-lg); padding: 30px 26px;
    background: #fff; border: 1px solid var(--gs-line);
    box-shadow: var(--gs-shadow-sm); transition: transform .2s ease, box-shadow .25s ease;
}
.gs-role-card:hover { transform: translateY(-5px); box-shadow: var(--gs-shadow); }
.gs-role-card .gs-role-ico { width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 18px; }
.gs-role-card .gs-role-ico svg { width: 27px; height: 27px; }
.gs-role-card.r-seller .gs-role-ico { background: var(--gs-primary-050); color: var(--gs-primary); }
.gs-role-card.r-customer .gs-role-ico { background: var(--gs-accent-050); color: var(--gs-accent); }
.gs-role-card.r-admin .gs-role-ico { background: #fff2dc; color: var(--gs-amber); }
.gs-role-card h3 { font-size: 1.3rem; }
.gs-role-card p { font-size: .98rem; margin-bottom: 18px; }
.gs-role-card ul { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-direction: column; gap: 9px; }
.gs-role-card li { display: flex; align-items: flex-start; gap: 9px; font-size: .93rem; font-weight: 600; color: #3a4257; }
.gs-role-card li svg { width: 18px; height: 18px; color: var(--gs-accent); flex: none; margin-top: 1px; }
.gs-role-link { font-weight: 800; color: var(--gs-primary); display: inline-flex; align-items: center; gap: 6px; }
.gs-role-link svg { width: 16px; height: 16px; transition: transform .2s ease; }
.gs-role-link:hover svg { transform: translateX(4px); }

/* ---------- Feature spotlight (Catalog Maker) ---------- */
.gs-spotlight {
    display: grid; grid-template-columns: 1fr 1.05fr; gap: 52px; align-items: center;
}
.gs-spotlight.reverse .gs-spot-media { order: 2; }
.gs-badge-feat {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(120deg, #fff2dc, #ffe6c2); color: #9a5a00;
    font-weight: 800; font-size: .78rem; letter-spacing: .05em; text-transform: uppercase;
    padding: 7px 14px; border-radius: 999px; margin-bottom: 18px;
}
.gs-spotlight h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
.gs-spotlight .gs-spot-lead { font-size: 1.1rem; margin-bottom: 22px; }
.gs-feat-list { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 14px; }
.gs-feat-list li { display: flex; gap: 12px; align-items: flex-start; }
.gs-feat-list .fi { width: 30px; height: 30px; border-radius: 9px; background: var(--gs-primary-050); color: var(--gs-primary); display: grid; place-items: center; flex: none; }
.gs-feat-list .fi svg { width: 16px; height: 16px; }
.gs-feat-list b { color: var(--gs-ink); display: block; font-size: .98rem; }
.gs-feat-list span { font-size: .9rem; color: var(--gs-muted); }

/* Catalog mock */
.gs-spot-media { position: relative; }
.gs-catalog-mock {
    background: #fff; border: 1px solid var(--gs-line); border-radius: var(--gs-radius-lg);
    box-shadow: var(--gs-shadow-lg); padding: 22px; position: relative; z-index: 2;
}
.gs-catalog-mock .cm-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.gs-catalog-mock .cm-brand { display: flex; align-items: center; gap: 10px; }
.gs-catalog-mock .cm-brand .m { width: 34px; height: 34px; border-radius: 10px; background: var(--gs-gradient); }
.gs-catalog-mock .cm-brand b { color: var(--gs-ink); font-size: 1rem; }
.gs-catalog-mock .cm-brand small { color: var(--gs-muted); font-size: .72rem; }
.gs-catalog-mock .cm-pdf { display: inline-flex; align-items: center; gap: 6px; font-size: .74rem; font-weight: 800; color: #e5484d; background: #fdeaea; padding: 6px 11px; border-radius: 8px; }
.gs-catalog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.gs-cat-item { border: 1px solid var(--gs-line); border-radius: 12px; overflow: hidden; }
.gs-cat-item .ph { height: 78px; background: linear-gradient(135deg, #eef0f8, #e4e7f5); display:grid; place-items:center; }
.gs-cat-item .ph svg { width: 30px; height: 30px; color: #c3c8dd; }
.gs-cat-item .meta { padding: 9px 11px; }
.gs-cat-item .meta .n { height: 7px; width: 80%; background: #e7e9f2; border-radius: 4px; margin-bottom: 6px; }
.gs-cat-item .meta .pr { font-weight: 800; color: var(--gs-primary); font-size: .82rem; }
.gs-share-badge {
    position: absolute; z-index: 3; background: #fff; border: 1px solid var(--gs-line);
    border-radius: 12px; box-shadow: var(--gs-shadow); padding: 9px 13px; display: flex; align-items: center; gap: 8px;
    font-weight: 700; font-size: .8rem; color: var(--gs-ink);
    bottom: -18px; right: -12px;
}
.gs-share-badge .wa { width: 30px; height: 30px; border-radius: 8px; background: #25d366; color:#fff; display:grid; place-items:center; }
.gs-share-badge .wa svg { width: 18px; height: 18px; }

/* ---------- App section (dark) ---------- */
.gs-app {
    background: radial-gradient(900px 500px at 85% 10%, rgba(124,58,237,.35), transparent 55%), #0b1020;
    color: #cbd2e6;
}
.gs-app h2 { color: #fff; }
.gs-app .gs-kicker { background: rgba(124,58,237,.22); color: #c4b5fd; }
.gs-app .gs-head p { color: #9aa3bd; }
.gs-app-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.gs-app-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 26px 0; }
.gs-app-feat { display: flex; gap: 12px; align-items: flex-start; }
.gs-app-feat .ai { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1); color:#c4b5fd; display:grid; place-items:center; flex:none; }
.gs-app-feat .ai svg { width: 20px; height: 20px; }
.gs-app-feat b { color: #fff; display: block; font-size: .98rem; }
.gs-app-feat span { font-size: .86rem; color: #9aa3bd; }
.gs-store-btns { display: flex; flex-wrap: wrap; gap: 12px; }
.gs-store-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: #fff; color: #0b1020; border-radius: 12px; padding: 10px 18px; font-weight: 700;
    transition: transform .18s ease;
}
.gs-store-btn:hover { transform: translateY(-2px); color:#0b1020; }
.gs-store-btn svg { width: 24px; height: 24px; }
.gs-store-btn small { display: block; font-size: .6rem; font-weight: 600; opacity: .7; line-height: 1; }
.gs-store-btn b { font-size: .98rem; line-height: 1.1; }
.gs-app-visual { display: flex; justify-content: center; }
.gs-phone-lg {
    width: 260px; background: #10182e; border: 8px solid #10182e; border-radius: 40px;
    box-shadow: var(--gs-shadow-lg); overflow: hidden; position: relative;
}
.gs-phone-lg .notch { position:absolute; top:0; left:50%; transform:translateX(-50%); width:110px; height:20px; background:#10182e; border-radius:0 0 14px 14px; z-index:4; }
.gs-phone-lg .scr { background: #f7f8fc; }
.gs-phone-lg .ph-top { background: var(--gs-gradient); color:#fff; padding: 34px 18px 20px; }
.gs-phone-lg .ph-top .hi { font-size:.72rem; opacity:.85; }
.gs-phone-lg .ph-top .st { font-weight:800; font-size:1.05rem; }
.gs-phone-lg .ph-kpis { display:flex; gap:10px; margin-top:14px; }
.gs-phone-lg .ph-kpi { flex:1; background: rgba(255,255,255,.16); border-radius:11px; padding:9px 10px; }
.gs-phone-lg .ph-kpi small { font-size:.55rem; opacity:.85; }
.gs-phone-lg .ph-kpi b { font-size:.86rem; display:block; }
.gs-phone-lg .ph-body { padding: 16px; display:flex; flex-direction:column; gap:10px; }
.gs-phone-lg .ph-card { background:#fff; border:1px solid var(--gs-line); border-radius:12px; padding:11px; display:flex; align-items:center; gap:10px; }
.gs-phone-lg .ph-card .ic { width:32px; height:32px; border-radius:9px; background:var(--gs-primary-050); color:var(--gs-primary); display:grid; place-items:center; flex:none;}
.gs-phone-lg .ph-card .ic svg{ width:16px; height:16px; }
.gs-phone-lg .ph-card .tx .a{ height:7px; width:80px; background:#e7e9f2; border-radius:4px; margin-bottom:5px;}
.gs-phone-lg .ph-card .tx .b{ height:5px; width:52px; background:#eef0f8; border-radius:4px;}
.gs-phone-lg .ph-card .amt{ margin-left:auto; font-weight:800; color:var(--gs-accent); font-size:.8rem; }

/* ---------- Storefront section ---------- */
.gs-store-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center; }
.gs-url-demo {
    display: inline-flex; align-items: center; gap: 2px; flex-wrap: wrap;
    background: #fff; border: 1px solid var(--gs-line); border-radius: 12px; padding: 10px 14px;
    font-weight: 700; color: var(--gs-ink); box-shadow: var(--gs-shadow-sm); margin-bottom: 22px;
}
.gs-url-demo .lock { color: var(--gs-accent); display:inline-flex; }
.gs-url-demo .lock svg { width:15px; height:15px; }
.gs-url-demo .sub { color: var(--gs-primary); }
.gs-url-demo .dom { color: var(--gs-muted); font-weight: 600; }
.gs-check-grid { list-style:none; padding:0; margin:0; display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.gs-check-grid li { display:flex; align-items:center; gap:9px; font-weight:600; font-size:.94rem; color:#3a4257; }
.gs-check-grid li svg { width:19px; height:19px; color:var(--gs-accent); flex:none; }

/* ---------- Payment strip ---------- */
.gs-pay-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items:center; }
.gs-pay-methods { display:flex; flex-wrap:wrap; gap:12px; margin-top: 8px; }
.gs-pay-chip {
    display:inline-flex; align-items:center; gap:9px; background:#fff; border:1px solid var(--gs-line);
    border-radius:12px; padding:12px 16px; font-weight:800; color:var(--gs-ink); box-shadow:var(--gs-shadow-sm);
}
.gs-pay-chip .pc { width:34px; height:34px; border-radius:9px; display:grid; place-items:center; color:#fff; font-size:.7rem; }
.gs-pay-chip .pc svg { width:18px; height:18px; }

/* ---------- Feature grid (12 cards) ---------- */
.gs-fgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.gs-fcard {
    background: #fff; border: 1px solid var(--gs-line); border-radius: var(--gs-radius);
    padding: 24px 20px; transition: transform .2s ease, box-shadow .25s ease, border-color .2s ease;
}
.gs-fcard:hover { transform: translateY(-4px); box-shadow: var(--gs-shadow); border-color: transparent; }
.gs-fcard .fi { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 15px; background: var(--gs-primary-050); color: var(--gs-primary); }
.gs-fcard .fi svg { width: 24px; height: 24px; }
.gs-fcard:nth-child(3n+2) .fi { background: var(--gs-accent-050); color: var(--gs-accent); }
.gs-fcard:nth-child(3n) .fi { background: #fff2dc; color: var(--gs-amber); }
.gs-fcard h3 { font-size: 1.06rem; margin-bottom: 6px; }
.gs-fcard p { font-size: .9rem; margin: 0; color: var(--gs-muted); }

/* ---------- How it works ---------- */
.gs-steps { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; counter-reset: step; }
.gs-step { position: relative; text-align: center; }
.gs-step .num {
    width: 54px; height: 54px; margin: 0 auto 16px; border-radius: 16px;
    background: var(--gs-gradient); color: #fff; display: grid; place-items: center;
    font-weight: 800; font-size: 1.25rem; box-shadow: 0 12px 22px -12px rgba(91,61,245,.9);
}
.gs-step h3 { font-size: 1rem; margin-bottom: 5px; }
.gs-step p { font-size: .85rem; margin: 0; color: var(--gs-muted); }
.gs-step:not(:last-child)::after {
    content: ""; position: absolute; top: 27px; left: calc(50% + 40px); right: calc(-50% + 40px);
    height: 2px; background: repeating-linear-gradient(90deg, var(--gs-line) 0 6px, transparent 6px 12px);
}

/* ---------- Comparison table ---------- */
.gs-compare-wrap { overflow-x: auto; border-radius: var(--gs-radius); border: 1px solid var(--gs-line); box-shadow: var(--gs-shadow-sm); background:#fff; }
.gs-compare { width: 100%; border-collapse: collapse; min-width: 620px; }
.gs-compare th, .gs-compare td { padding: 16px 18px; text-align: center; border-bottom: 1px solid var(--gs-line); font-size: .93rem; }
.gs-compare thead th { font-size: 1rem; color: var(--gs-ink); font-weight: 800; }
.gs-compare tbody td:first-child, .gs-compare thead th:first-child { text-align: left; font-weight: 700; color: var(--gs-ink); }
.gs-compare .col-gs { background: var(--gs-primary-050); position: relative; }
.gs-compare thead .col-gs { background: var(--gs-gradient); color: #fff; border-top-left-radius: 12px; border-top-right-radius: 12px; }
.gs-compare thead .col-gs .g-badge { display:block; font-size:.68rem; font-weight:700; opacity:.85; }
.gs-compare .yes { color: var(--gs-accent); font-weight: 800; }
.gs-compare .no { color: #cbd0dd; font-weight: 800; }
.gs-compare tbody tr:last-child td { border-bottom: none; }
.gs-compare td.col-gs { font-weight: 700; color: var(--gs-primary-700); }

/* ---------- Use cases ---------- */
.gs-use-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gs-use {
    background: #fff; border: 1px solid var(--gs-line); border-radius: var(--gs-radius);
    padding: 22px 18px; text-align: center; transition: transform .2s ease, box-shadow .2s ease;
}
.gs-use:hover { transform: translateY(-4px); box-shadow: var(--gs-shadow); }
.gs-use .ui { width: 50px; height: 50px; margin: 0 auto 12px; border-radius: 14px; display: grid; place-items: center; background: var(--gs-bg-tint); color: var(--gs-primary); }
.gs-use .ui svg { width: 25px; height: 25px; }
.gs-use b { color: var(--gs-ink); font-size: .98rem; }

/* ---------- Testimonials ---------- */
.gs-tgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gs-tcard { background: #fff; border: 1px solid var(--gs-line); border-radius: var(--gs-radius-lg); padding: 28px 26px; box-shadow: var(--gs-shadow-sm); display:flex; flex-direction:column; }
.gs-tcard .stars { display: flex; gap: 3px; color: var(--gs-amber); margin-bottom: 14px; }
.gs-tcard .stars svg { width: 18px; height: 18px; }
.gs-tcard .quote { font-size: 1.02rem; color: #2b3247; font-weight: 600; line-height: 1.6; margin-bottom: 20px; }
.gs-tcard .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.gs-tcard .who .av { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 1.05rem; flex:none; }
.gs-tcard .who b { color: var(--gs-ink); font-size: .95rem; display: block; }
.gs-tcard .who small { color: var(--gs-muted); font-size: .82rem; }

/* ---------- Final CTA ---------- */
.gs-cta-band {
    position: relative; overflow: hidden;
    background: var(--gs-gradient);
    border-radius: 30px; padding: 60px 40px; text-align: center; color: #fff;
    box-shadow: var(--gs-shadow-lg);
}
.gs-cta-band::before { content:""; position:absolute; top:-80px; right:-60px; width:280px; height:280px; border-radius:50%; background:rgba(255,255,255,.1); }
.gs-cta-band::after { content:""; position:absolute; bottom:-100px; left:-50px; width:260px; height:260px; border-radius:50%; background:rgba(255,255,255,.08); }
.gs-cta-band h2 { color: #fff; font-size: clamp(1.9rem, 3.6vw, 2.7rem); position: relative; }
.gs-cta-band p { color: rgba(255,255,255,.9); font-size: 1.15rem; max-width: 620px; margin: 12px auto 28px; position: relative; }
.gs-cta-band .gs-hero-cta { justify-content: center; position: relative; }
.gs-cta-note { margin-top: 18px; font-size: .88rem; color: rgba(255,255,255,.85); position: relative; }

/* ---------- FAQ ---------- */
.gs-faq { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.gs-faq-item { background: #fff; border: 1px solid var(--gs-line); border-radius: var(--gs-radius-sm); overflow: hidden; }
.gs-faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 20px 22px; font-weight: 700; font-size: 1.02rem; color: var(--gs-ink); display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: inherit; }
.gs-faq-q .ic { width: 26px; height: 26px; border-radius: 8px; background: var(--gs-primary-050); color: var(--gs-primary); display: grid; place-items: center; flex: none; transition: transform .25s ease; }
.gs-faq-q .ic svg { width: 15px; height: 15px; }
.gs-faq-item.is-open .gs-faq-q .ic { transform: rotate(45deg); background: var(--gs-primary); color: #fff; }
.gs-faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.gs-faq-a p { padding: 0 22px 20px; margin: 0; font-size: .96rem; color: var(--gs-body); }

/* ---------- Footer ---------- */
.gs-footer { background: #0b1020; color: #9aa3bd; padding: 66px 0 26px; }
.gs-footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr; gap: 34px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08); }
.gs-footer .gs-brand { color: #fff; margin-bottom: 14px; }
.gs-footer .gs-brand img { filter: brightness(0) invert(1); }
.gs-foot-about { font-size: .92rem; color: #8b94af; margin-bottom: 18px; max-width: 300px; }
.gs-foot-col h4 { color: #fff; font-size: .95rem; letter-spacing: .02em; margin-bottom: 16px; text-transform: uppercase; font-size: .8rem; }
.gs-foot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.gs-foot-col a { color: #9aa3bd; font-size: .92rem; }
.gs-foot-col a:hover { color: #fff; }
.gs-foot-apps { display: flex; flex-direction: column; gap: 10px; }
.gs-foot-apps .gs-store-btn { justify-content: flex-start; }
.gs-foot-social { display: flex; gap: 10px; margin-top: 16px; }
.gs-foot-social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1); display: grid; place-items: center; color: #cbd2e6; }
.gs-foot-social a:hover { background: var(--gs-primary); color: #fff; border-color: var(--gs-primary); }
.gs-foot-social a img,
.gs-foot-social a svg { width: 18px; height: 18px; display: block; }
.gs-foot-social a img { filter: brightness(0) invert(.85); }
.gs-footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; padding-top: 24px; font-size: .86rem; color: #7b83a0; }
.gs-footer-bottom .links { display: flex; flex-wrap: wrap; gap: 6px 18px; }
.gs-footer-bottom a { color: #9aa3bd; }
.gs-footer-bottom a:hover { color: #fff; }

/* ---------- Reveal animation ---------- */
.gs-reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.gs-reveal.is-in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
/* Collapse the nav to the hamburger a little early so the full menu never
   overflows or wraps on mid-size screens (wide logo + 5 links + 2 buttons). */
@media (max-width: 1091px) {
    .gs-nav-links { display: none; }
    .gs-nav-actions .gs-hide-sm { display: none; }
    .gs-burger { display: flex; }
    .gs-mobile-menu { inset: 76px 0 0 0; }
}
@media (max-width: 991px) {
    .gs-nav-links { display: none; }
    .gs-nav-actions .gs-hide-sm { display: none; }
    .gs-burger { display: flex; }
    .gs-hero-grid, .gs-app-grid, .gs-store-grid, .gs-pay-grid, .gs-spotlight { grid-template-columns: 1fr; }
    .gs-spotlight.reverse .gs-spot-media { order: 0; }
    .gs-hero-visual { min-height: 0; margin-top: 12px; padding-bottom: 18px; }
    .gs-float-card.fc-2 { left: 8px; bottom: 8px; }
    .gs-fgrid { grid-template-columns: repeat(3, 1fr); }
    .gs-steps { grid-template-columns: repeat(3, 1fr); row-gap: 30px; }
    .gs-step::after { display: none; }
    .gs-use-grid { grid-template-columns: repeat(3, 1fr); }
    .gs-footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 767px) {
    .gs-section { padding: 42px 0; }
    .gs-prob-grid { grid-template-columns: 1fr; }
    .gs-fgrid, .gs-app-feats, .gs-check-grid, .gs-catalog-grid { grid-template-columns: 1fr 1fr; }
    .gs-use-grid { grid-template-columns: 1fr 1fr; }
    .gs-hero-stats { grid-template-columns: 1fr 1fr; }
    .gs-steps { grid-template-columns: 1fr 1fr; }
    .gs-hero { padding: 28px 0 28px; }
    .gs-hero-grid { gap: 18px; }
    .gs-cta-band { padding: 44px 22px; border-radius: 22px; }
    .gs-footer-top { grid-template-columns: 1fr; }
    .gs-mock-phone { width: 140px; right: 0; bottom: -20px; }
    .gs-hero-cta .gs-btn, .gs-cta-band .gs-btn { flex: 1 1 auto; }
    .gs-head { margin-bottom: 28px; }

    /* Full-width CTAs */
    .gs-hero-cta,
    .gs-store-btns,
    .gs-cta-band .gs-hero-cta {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }
    .gs-hero-cta .gs-btn,
    .gs-store-btns .gs-btn,
    .gs-store-btns .gs-store-btn,
    .gs-cta-band .gs-btn,
    #how-it-works .gs-btn,
    #storefront .gs-btn,
    #catalog-maker .gs-btn {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }

    /* Horizontal scroll carousels: roles, use-cases, testimonials */
    .gs-hscroll {
        display: flex !important;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 14px;
        padding: 4px 4px 14px;
        margin: 0 -16px;
        padding-left: 16px;
        padding-right: 16px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .gs-hscroll::-webkit-scrollbar { display: none; }
    .gs-hscroll > * {
        flex: 0 0 min(82vw, 300px);
        scroll-snap-align: start;
        max-width: 300px;
    }
    .gs-use-grid.gs-hscroll > * {
        flex: 0 0 min(42vw, 150px);
        max-width: 160px;
    }

    /* Vendor app: center copy + feature cards */
    .gs-app-grid > .gs-reveal:first-child {
        text-align: center;
    }
    .gs-app-grid .gs-kicker { display: inline-block; }
    .gs-app-feats {
        text-align: left;
        margin-left: auto;
        margin-right: auto;
    }
    .gs-app-feat {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }
    .gs-app-feat > span:last-child {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .gs-store-btns {
        justify-content: center;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Storefront + payments: center copy */
    .gs-store-grid > .gs-reveal:last-child,
    .gs-pay-grid > .gs-reveal:first-child {
        text-align: center;
    }
    .gs-store-grid .gs-url-demo {
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }
    .gs-store-grid .gs-check-grid,
    .gs-pay-grid .gs-check-grid {
        text-align: left;
    }
    .gs-store-grid > .gs-reveal:last-child > div[style*="margin-top"] {
        display: flex;
        justify-content: center;
    }
    .gs-pay-methods {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        justify-items: stretch;
    }
    .gs-pay-chip { width: 100%; box-sizing: border-box; justify-content: flex-start; }

    /* How it works CTA full width */
    #how-it-works > .gs-container > div[style*="text-align:center"] {
        padding: 0;
    }
    #how-it-works > .gs-container > div[style*="text-align:center"] .gs-btn {
        width: 100%;
    }
}
@media (max-width: 480px) {
    /* Keep compact 2-column grids — do not collapse to 1 */
    .gs-fgrid, .gs-use-grid:not(.gs-hscroll), .gs-hero-stats, .gs-steps, .gs-app-feats, .gs-check-grid, .gs-catalog-grid {
        grid-template-columns: 1fr 1fr;
    }
    .gs-catalog-grid, .gs-check-grid { grid-template-columns: 1fr 1fr; }
    .gs-container { padding: 0 16px; }
    .gs-hero { padding: 22px 0 20px; }
    .gs-section { padding: 36px 0; }
    .gs-hscroll > * { flex-basis: min(86vw, 290px); }
    .gs-use-grid.gs-hscroll > * { flex-basis: min(44vw, 140px); }
    .gs-step h3 { font-size: .92rem; }
    .gs-step p { font-size: .8rem; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .gs-reveal { opacity: 1; transform: none; transition: none; }
    .gs-lp * { scroll-behavior: auto !important; }
}

/* ============================================================================
   Mobile header fix — keep logo, CTA and burger fully on-screen (no clipping)
   ============================================================================ */
@media (max-width: 600px) {
    .gs-nav { gap: 10px; min-width: 0; flex-wrap: nowrap; }
    .gs-brand { flex: 0 1 auto; min-width: 0; overflow: hidden; }
    .gs-brand img { height: 32px; max-height: 32px; max-width: 42vw; width: auto; object-fit: contain; }
    .gs-nav-actions { gap: 8px; flex: none; }
    .gs-nav-actions .gs-btn--primary { padding: 9px 14px; font-size: .8rem; }
    .gs-burger { display: flex; flex: none; width: 42px; height: 42px; }
}
/* Narrowest phones: header CTA cannot fit next to logo + menu, and it is
   already exposed in the mobile drawer and the hero — so hide it here to
   guarantee the menu button is never pushed off-screen. */
@media (max-width: 400px) {
    .gs-nav-actions .gs-btn--primary { display: none; }
    .gs-brand img { max-width: 62vw; }
}

/* Push the header actions (Create-Your-Store + menu button) flush to the right
   edge on mobile, then nudge the menu button a touch closer to the edge. */
@media (max-width: 600px) {
    .gs-nav-actions { margin-left: auto; margin-right: -4px; }
}

/* Footer mobile: 2-column link grid (like the reference) instead of a single
   stacked column; brand + tagline span the full width across the top. */
@media (max-width: 991px) {
    .gs-foot-brand { grid-column: 1 / -1; }
}
@media (max-width: 767px) {
    .gs-footer-top { grid-template-columns: 1fr 1fr; gap: 30px 18px; }
}
