/* ═══════════════════════════════════════════
   SHAPE TO VECTOR — COMPLETE CSS
   Brand: Deep blue + electric accent
═══════════════════════════════════════════ */

:root {
    --brand:        #1A56DB;
    --brand-dark:   #1345B5;
    --brand-light:  #EBF0FF;
    --accent:       #F59E0B;
    --accent-hover: #D97706;
    --bg:           #FAFBFC;
    --bg-card:      #FFFFFF;
    --text:         #1F2937;
    --text-muted:   #6B7280;
    --border:       #E5E7EB;
    --border-hover: #D1D5DB;
    --radius:       12px;
    --radius-lg:    16px;
    --shadow-sm:    0 1px 3px rgba(0,0,0,.06);
    --shadow:       0 4px 16px rgba(0,0,0,.07);
    --shadow-lg:    0 8px 32px rgba(0,0,0,.10);
    --font:         'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --donate-grad:  linear-gradient(135deg, #E84393, #FD79A8);
}

*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

/* ── NAVBAR ──────────────────────────────── */
.stv-navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 0;
}

.stv-navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    gap: 16px;
}

.stv-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.stv-brand span {
    font-weight: 700;
    font-size: 17px;
    color: var(--text);
    letter-spacing: -.02em;
}

.stv-brand:hover span { color: var(--brand); }

.stv-nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.stv-nav-link {
    padding: 7px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 8px;
    transition: color .15s, background .15s;
}

.stv-nav-link:hover {
    color: var(--brand);
    background: var(--brand-light);
}

.stv-nav-link.active {
    color: var(--brand);
    font-weight: 600;
    background: var(--brand-light);
}

.stv-navbar-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stv-nav-donate {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #E84393;
    background: rgba(232,67,147,.08);
    transition: background .2s, transform .2s;
    text-decoration: none;
}

.stv-nav-donate:hover {
    background: rgba(232,67,147,.15);
    transform: scale(1.1);
    color: #E84393;
}

/* Hamburger */
.stv-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
}

.stv-hamburger span {
    display: block;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: .25s;
}

.stv-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.stv-hamburger.open span:nth-child(2) { opacity: 0; }
.stv-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV ─────────────────────────── */
@media (max-width: 768px) {
    .stv-hamburger { display: flex; }

    .stv-nav-links {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        padding: 12px 20px 16px;
        gap: 2px;
        box-shadow: var(--shadow);
    }

    .stv-nav-links.open { display: flex; }

    .stv-nav-link {
        padding: 10px 14px;
        font-size: 15px;
        width: 100%;
    }
}

/* ── FLOATING DONATE BUTTON ─────────────── */
.stv-floating-donate {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 100px;
    background: var(--donate-grad);
    box-shadow: 0 4px 16px rgba(232,67,147,.35);
    transition: transform .2s, box-shadow .2s;
    text-decoration: none;
}

.stv-floating-donate:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(232,67,147,.5);
}

.stv-floating-donate span {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .stv-floating-donate span { display: none; }
    .stv-floating-donate { padding: 14px; }
}

/* ── FOOTER ──────────────────────────────── */
.stv-footer {
    margin-top: 60px;
    padding: 40px 0 24px;
    background: #fff;
    border-top: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-muted);
}

.stv-footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.stv-footer-brand { max-width: 400px; }
.stv-footer-brand p { margin-top: 8px; line-height: 1.6; }

.stv-footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stv-footer-logo span {
    font-weight: 700;
    font-size: 15px;
    color: var(--text);
}

.stv-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    align-items: flex-start;
    padding-top: 4px;
}

.stv-footer-links a {
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    transition: color .15s;
}

.stv-footer-links a:hover { color: var(--brand); }

.stv-footer-bottom {
    padding-top: 20px;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 13px;
}

@media (max-width: 640px) {
    .stv-footer-grid { flex-direction: column; gap: 24px; }
}

/* ── MAIN CONTAINER ──────────────────────── */
.stv-main {
    min-height: calc(100vh - 200px);
    padding-top: 8px;
}

/* ── HERO ────────────────────────────────── */
.hero-text { padding: 32px 0 8px; }

.hero-text h1 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -.03em;
    color: var(--text);
    line-height: 1.2;
}

.hero-text p {
    font-size: 1rem;
    max-width: 680px;
    margin: 12px auto 0;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (min-width: 768px) {
    .hero-text h1 { font-size: 2.5rem; }
}

/* ── DROPZONE ────────────────────────────── */
.adobe-dropzone-wrapper {
    max-width: 720px;
    margin: 0 auto;
}

.dropzone-container {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: box-shadow .3s;
}

.dropzone-container:hover { box-shadow: var(--shadow-lg); }

.dropzone {
    border: 2px dashed var(--brand);
    border-radius: var(--radius);
    padding: 28px 16px;
    background: var(--brand-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-height: auto;
    transition: background .2s, border-color .2s;
}

.dropzone:hover,
.dropzone.border-info {
    border-color: var(--accent);
    background: #FFFBEB;
}

.dropzone p {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--text-muted);
    font-weight: 500;
}

.button-container .btn-accent {
    background: var(--brand);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    padding: 10px 24px;
    transition: background .15s, transform .1s;
}

.button-container .btn-accent:hover {
    background: var(--brand-dark);
    transform: translateY(-1px);
}

.free-plan-widget { font-size: 0.9rem; color: var(--text-muted); }

.plan-widget-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg);
    color: var(--text);
    font-size: 0.82rem;
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid var(--border);
    font-weight: 500;
}

.plan-widget-tag img { width: 14px; height: 14px; }

/* ── ACTION BUTTONS ──────────────────────── */
.action-btn {
    min-width: 150px;
    padding: 10px 22px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    transition: transform .1s;
}

.action-btn:hover { transform: translateY(-1px); }
.action-btn i { vertical-align: middle; font-size: 1rem; }

#thumbnailPreview img {
    max-width: 80px;
    max-height: 80px;
    border: 2px solid var(--brand);
    border-radius: 8px;
    object-fit: contain;
    background: #fff;
}

/* ── SECTION CARDS ───────────────────────── */
.stv-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: box-shadow .2s, transform .2s;
}

.stv-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

/* How it works, stats, etc. */
section h2 {
    font-weight: 800;
    letter-spacing: -.02em;
}

section .text-muted { color: var(--text-muted) !important; }

/* Override Bootstrap card styling in sections */
.p-4.border.rounded-4 {
    border-color: var(--border) !important;
    border-radius: var(--radius) !important;
    transition: box-shadow .2s, transform .2s;
}

.p-4.border.rounded-4:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

/* ── STAR RATING ─────────────────────────── */
#ratingStars i {
    cursor: pointer;
    transition: transform .2s;
    color: var(--accent);
}

#ratingStars i:hover { transform: scale(1.3); }

/* ── SEO CONTENT ─────────────────────────── */
.seo-content h2 { font-size: 1.5rem; }
.seo-content h3 { font-size: 1.2rem; }
.seo-content p,
.seo-content li { line-height: 1.7; color: var(--text-muted); }
.seo-content a { color: var(--brand); font-weight: 600; }
.seo-content a:hover { text-decoration: underline; }

/* ── AD SLOTS ────────────────────────────── */
.stv-ad {
    text-align: center;
    padding: 16px 0;
}

/* ── BLOG CARDS ──────────────────────────── */
.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    height: 100%;
    transition: box-shadow .2s, transform .2s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
    color: inherit;
    text-decoration: none;
}

.blog-card h5 { font-weight: 700; color: var(--text); margin-bottom: 8px; }
.blog-card p { color: var(--text-muted); font-size: 14px; line-height: 1.6; }

.blog-card .badge {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    background: var(--brand-light);
    color: var(--brand);
}

/* ── ABOUT / SUPPORT SECTION ─────────────── */
.stv-support-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
}

.stv-support-card .heart { font-size: 32px; margin-bottom: 12px; }

.stv-paypal-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #0070BA;
    color: #fff;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s, transform .1s;
}

.stv-paypal-btn:hover {
    background: #005EA6;
    color: #fff;
    transform: translateY(-1px);
}

/* ── FAQ ACCORDION ───────────────────────── */
.faq-category { margin-bottom: 32px; }

.faq-category h2 {
    font-size: 1.3rem;
    font-weight: 700;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--brand-light);
    margin-bottom: 16px;
}

.accordion-button:not(.collapsed) {
    background: var(--brand-light);
    color: var(--brand);
    box-shadow: none;
}

.accordion-button:focus { box-shadow: 0 0 0 3px rgba(26,86,219,.15); }

/* ── SUBSCRIBE ───────────────────────────── */
.input-group-lg .form-control {
    border-radius: 8px 0 0 8px;
    border-color: var(--border);
    font-size: 14px;
}

.input-group-lg .form-control:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(26,86,219,.1);
}

.input-group-lg .btn-primary {
    border-radius: 0 8px 8px 0;
    background: var(--brand);
    border-color: var(--brand);
}

/* ── STAT COUNTERS ───────────────────────── */
.stat-box {
    min-width: 120px;
    text-align: center;
    padding: 20px 24px;
    border-radius: var(--radius);
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: transform .2s, box-shadow .2s;
}

.stat-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.stat-box h3 { font-weight: 800; color: var(--text); }
.stat-box p { font-size: .9rem; color: var(--text-muted); margin-top: .5rem; }

/* ── PAGE CONTENT ────────────────────────── */
.page-content h1 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -.02em;
}

.page-content h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 32px;
}

.page-content p, .page-content li {
    line-height: 1.7;
    color: var(--text-muted);
}

/* ── UTILITIES ───────────────────────────── */
.text-blue { color: var(--brand); }
.bg-section { background: var(--bg); }

/* Override Bootstrap bg-light to match our palette */
.bg-light { background: var(--bg) !important; }

.tip-hint {
    font-size: 1rem;
    font-weight: 500;
    display: inline-block;
    margin-top: .5rem;
}

/* Ad placeholder (dev only) */
.ad-placeholder {
    width: 250px;
    height: 250px;
    border: 2px dashed var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    color: var(--text-muted);
    font-size: .85rem;
    border-radius: 8px;
}

/* ── SMOOTH TRANSITIONS ──────────────────── */
a, button, .btn {
    transition: color .15s, background .15s, border-color .15s, box-shadow .15s, transform .1s;
}
