:root {
    --bg: #06090f;
    --bg-elevated: #0c111b;
    --card: #10161f;
    --card-border: #1e2733;
    --text: #e8ecf1;
    --text-muted: #8b96a5;
    --accent: #22d47b;
    --accent-dark: #16a35d;
    --accent-glow: rgba(34, 212, 123, .18);
    --violet: #7c6cf6;
}

* { box-sizing: border-box; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    overflow-x: hidden;
}

a { color: inherit; }

.container-narrow { max-width: 1120px; margin: 0 auto; padding: 0 1.5rem; }

/* ---------- Nav ---------- */
.nav-vendor {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(6, 9, 15, .75);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    padding: 1.1rem 0;
}

.nav-vendor .inner { display: flex; align-items: center; justify-content: space-between; }

.brand-mark { display: flex; align-items: center; gap: .6rem; font-weight: 800; font-size: 1.15rem; text-decoration: none; color: var(--text); }
.brand-mark .icon { width: 38px; height: 38px; border-radius: 11px; background: linear-gradient(135deg, var(--accent), var(--violet)); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: #06090f; }

.nav-links { display: flex; gap: 2rem; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: .92rem; font-weight: 500; transition: color .15s; }
.nav-links a:hover { color: var(--text); }

.btn-glow {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #06090f;
    font-weight: 700;
    padding: .65rem 1.4rem;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border: none;
    box-shadow: 0 8px 24px -8px var(--accent-glow);
    transition: transform .15s ease, box-shadow .15s ease;
}
.btn-glow:hover { transform: translateY(-1px); box-shadow: 0 12px 32px -8px var(--accent-glow); color: #06090f; }

.btn-ghost {
    border: 1px solid var(--card-border);
    color: var(--text);
    padding: .65rem 1.4rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: .92rem;
    transition: border-color .15s, background .15s;
}
.btn-ghost:hover { border-color: var(--accent); background: rgba(34, 212, 123, .06); color: var(--text); }

/* ---------- Hero ---------- */
.hero-vendor {
    position: relative;
    padding: 7rem 0 5rem;
    text-align: center;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: -220px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
    pointer-events: none;
    animation: pulse-glow 8s ease-in-out infinite;
}
@keyframes pulse-glow {
    0%, 100% { opacity: .7; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.08); }
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(34, 212, 123, .1);
    border: 1px solid rgba(34, 212, 123, .25);
    color: var(--accent);
    font-size: .82rem;
    font-weight: 700;
    padding: .4rem 1rem;
    border-radius: 999px;
    margin-bottom: 1.75rem;
}

.hero-vendor h1 {
    font-size: 3.6rem;
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.08;
    margin: 0 0 1.5rem;
    background: linear-gradient(180deg, #fff 0%, #b9c2ce 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-vendor .lead {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.hero-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }

.hero-stats { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.hero-stats .stat { text-align: center; }
.hero-stats .stat .num { font-size: 1.6rem; font-weight: 800; color: var(--text); }
.hero-stats .stat .lbl { font-size: .82rem; color: var(--text-muted); }

/* ---------- Screenshot mockup ---------- */
.mockup-wrap { margin-top: 4rem; perspective: 1600px; }
.mockup-frame {
    border-radius: 18px;
    border: 1px solid var(--card-border);
    background: var(--card);
    box-shadow: 0 60px 120px -40px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.03);
    overflow: hidden;
    transform: rotateX(3deg);
    max-width: 980px;
    margin: 0 auto;
}
.mockup-topbar { display: flex; gap: .4rem; padding: .8rem 1.1rem; background: #0c111b; border-bottom: 1px solid var(--card-border); }
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-body { display: grid; grid-template-columns: 78px 1fr; min-height: 340px; }
.mockup-sidebar { background: #050810; padding: 1.1rem .6rem; }
.mockup-sidebar .mi { width: 32px; height: 32px; border-radius: 9px; background: rgba(255,255,255,.06); margin-bottom: .7rem; }
.mockup-sidebar .mi.on { background: linear-gradient(135deg, var(--accent), var(--violet)); }
.mockup-content { padding: 1.5rem; background: #0a0e16; }
.mockup-bar { height: 11px; border-radius: 6px; background: #1a222e; margin-bottom: .55rem; }
.mockup-card { background: #10161f; border: 1px solid var(--card-border); border-radius: 12px; padding: 1.1rem; }

/* ---------- Section shells ---------- */
.section { padding: 6rem 0; }
.section-tag { color: var(--accent); font-weight: 700; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: .8rem; display: block; text-align: center; }
.section-title { font-size: 2.4rem; font-weight: 800; letter-spacing: -.02em; text-align: center; margin-bottom: 1rem; }
.section-subtitle { color: var(--text-muted); text-align: center; max-width: 560px; margin: 0 auto 3.5rem; font-size: 1.05rem; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Features ---------- */
.feature-card-v {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 1.9rem;
    height: 100%;
    transition: border-color .2s, transform .2s;
}
.feature-card-v:hover { border-color: rgba(34,212,123,.35); transform: translateY(-3px); }
.feature-card-v .fi { width: 46px; height: 46px; border-radius: 12px; background: rgba(34,212,123,.1); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 1.1rem; }
.feature-card-v h6 { font-weight: 700; margin-bottom: .5rem; }
.feature-card-v p { color: var(--text-muted); font-size: .9rem; margin: 0; }

/* ---------- Pricing ---------- */
.price-card-v {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2.2rem;
    height: 100%;
    position: relative;
}
.price-card-v.featured { border-color: var(--accent); background: linear-gradient(180deg, rgba(34,212,123,.08), var(--card) 40%); box-shadow: 0 30px 60px -30px var(--accent-glow); }
.price-badge-v { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: #06090f; font-weight: 800; font-size: .74rem; padding: .3rem 1rem; border-radius: 999px; white-space: nowrap; }
.price-name-v { color: var(--text-muted); font-weight: 700; font-size: .95rem; margin-bottom: .6rem; }
.price-amount-v { font-size: 2.6rem; font-weight: 800; line-height: 1; }
.price-amount-v small { font-size: 1rem; color: var(--text-muted); font-weight: 600; }
.price-regular-v { text-decoration: line-through; color: var(--text-muted); font-size: .92rem; }
.price-discount-v { display: inline-block; background: rgba(239,68,68,.12); color: #f87171; font-weight: 700; font-size: .76rem; padding: .18rem .55rem; border-radius: 6px; margin-left: .4rem; }
.price-features-v { list-style: none; padding: 0; margin: 1.6rem 0; }
.price-features-v li { display: flex; gap: .55rem; margin-bottom: .65rem; font-size: .88rem; color: #c3ccd6; }
.price-features-v li i { color: var(--accent); margin-top: .1rem; }

/* ---------- Comparison ---------- */
.compare-table { width: 100%; border-collapse: separate; border-spacing: 0; background: var(--card); border: 1px solid var(--card-border); border-radius: 16px; overflow: hidden; }
.compare-table th, .compare-table td { padding: 1rem 1.2rem; text-align: center; border-bottom: 1px solid var(--card-border); font-size: .9rem; }
.compare-table th:first-child, .compare-table td:first-child { text-align: left; color: var(--text-muted); }
.compare-table thead th { background: #0c111b; font-weight: 700; }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table .yes { color: var(--accent); font-size: 1.1rem; }
.compare-table .no { color: #475061; font-size: 1.1rem; }

/* ---------- FAQ ---------- */
.faq-item-v { border: 1px solid var(--card-border); border-radius: 12px; margin-bottom: .8rem; background: var(--card); overflow: hidden; }
.faq-q { padding: 1.1rem 1.4rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; }
.faq-q i { transition: transform .2s; color: var(--accent); }
.faq-item-v.open .faq-q i { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; color: var(--text-muted); font-size: .9rem; }
.faq-item-v.open .faq-a { max-height: 240px; }
.faq-a-inner { padding: 0 1.4rem 1.1rem; }

/* ---------- Reviews ---------- */
.review-card-v { background: var(--card); border: 1px solid var(--card-border); border-radius: 16px; padding: 1.6rem; height: 100%; }
.review-stars { color: #fbbf24; margin-bottom: .8rem; font-size: .9rem; }
.review-text { color: #c3ccd6; font-size: .92rem; margin-bottom: 1.2rem; line-height: 1.55; }
.review-author { display: flex; align-items: center; gap: .7rem; }
.review-avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--violet)); display: flex; align-items: center; justify-content: center; font-weight: 700; color: #06090f; font-size: .85rem; }
.review-name { font-weight: 700; font-size: .88rem; }
.review-role { color: var(--text-muted); font-size: .78rem; }

/* ---------- Contact / CTA ---------- */
.cta-band-v {
    background: linear-gradient(135deg, #0c1a12, #0c111b 60%);
    border: 1px solid rgba(34,212,123,.2);
    border-radius: 24px;
    padding: 4rem 2.5rem;
    text-align: center;
}
.cta-band-v h3 { font-size: 2rem; font-weight: 800; margin-bottom: 1rem; }
.cta-band-v p { color: var(--text-muted); margin-bottom: 2rem; }

/* ---------- Footer ---------- */
.footer-v { border-top: 1px solid var(--card-border); padding: 3rem 0 2rem; color: var(--text-muted); font-size: .88rem; }
.footer-v a { color: var(--text-muted); text-decoration: none; }
.footer-v a:hover { color: var(--accent); }

@media (max-width: 767px) {
    .hero-vendor h1 { font-size: 2.3rem; }
    .section-title { font-size: 1.7rem; }
    .mockup-body { grid-template-columns: 56px 1fr; }
}
