/* =====================================================
   Vidzers Marketer — Landing Page
   Styles for index.html
   ===================================================== */

/* ── Layout z-index overrides for index page ── */
#navbar        { z-index: 1045; }
#sidebar       { z-index: 1045; }
#content-wrapper { overflow: visible !important; }

/* ── Hero section ── */
.vz-hero {
    background: var(--vz-grad-dark);
    position: relative;
    overflow: hidden;
    padding: 96px 0 72px;
}
.vz-hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}
.vz-hero-blob-1 { top: 20%; left: 10%;  width: 280px; height: 280px; background: rgba(246,56,84,0.15); }
.vz-hero-blob-2 { top: 30%; right: 10%; width: 340px; height: 340px; background: rgba(255,107,53,0.10); }
.vz-hero-blob-3 { bottom: 15%; left: 35%; width: 300px; height: 300px; background: rgba(109,40,217,0.12); }

.vz-hero h1 {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: clamp(28px, 4.5vw, 52px);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}
.vz-hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    border-radius: 9999px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 22px;
}
.vz-hero-badge span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    margin-right: 8px;
    display: inline-block;
}
.vz-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.vz-hero-stats .stat-num { font-size: 26px; font-weight: 700; color: #fff; }
.vz-hero-stats .stat-lbl { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 3px; }

/* Hero text / image */
.vz-hero-lead {
    font-size: 17px;
    color: rgba(255,255,255,0.72);
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 500px;
}
.vz-hero-cta  { gap: 14px; }
.vz-hero-img  { border-radius: 16px; box-shadow: 0 24px 60px rgba(0,0,0,0.45); max-height: 440px; object-fit: cover; }

/* ── Influencer browser section ── */
html, body { overscroll-behavior: none; }

.vz-influencer-heading {
    font-family: 'Plus Jakarta Sans','Inter',sans-serif;
    font-size: clamp(22px,3vw,32px);
    font-weight: 700;
    color: #111827;
    margin-top: 4px;
}
.vz-influencer-lead {
    color: #6b7280;
    font-size: 15px;
    max-width: 520px;
    margin: 8px auto 0;
}

.tab { overflow: hidden; background-color: #f2f0f0; border-bottom: 1px solid #ccc; }
.tab button {
    background-color: inherit; float: left; border: none; outline: none;
    cursor: pointer; padding: 14px 16px; width: 15%; transition: 0.3s; border: 1px solid #ccc;
}
.tab button:hover { background-color: #ddd; }
.tab button.active { background-color: #ccc; }
.tabcontent { display: none; padding: 6px 12px; border: 1px solid #ccc; border-top: none; }

/* Platform icon sizes in card + modal */
.vz-yt-modal-icon    { height: 23px; width: 38px; }
.vz-insta-modal-icon { height: 31px; width: 31px; }
.vz-insta-fee-icon   { height: 18px; width: 18px; }
.vz-fb-fee-icon      { font-size: 16px; }
.vz-yt-fee-icon      { height: 14px; width: 22px; }

/* Price empty state icon */
.vz-price-empty i { font-size: 22px; margin-bottom: 6px; display: block; opacity: 0.3; }

/* =====================================================
   Index Page — Modernization Additions
   ===================================================== */

/* Influencer tag pills */
.vz-inf-tag {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 600;
    background: var(--vz-red-muted);
    color: var(--vz-red);
    margin: 2px;
}

