/* ================================================================
   VIOLET VOID — style.css
   Dark SaaS theme for Skaiyoh SMM Panel
   Design tokens, layout, components, responsive breakpoints.
   Bootstrap 3 is the baseline — every style here is additive.
================================================================ */

/* ── Houdini: animatable angle for aurora border ──────────────── */
@property --vv-aurora-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

/* ── Design Tokens ────────────────────────────────────────────── */
:root {
    --color-primary:        #8741ff;
    --color-primary-dim:    #8741ff22;
    --color-primary-glow:   #8741ff66;
    --color-primary-far:    rgba(109, 40, 217, 1);
    --color-bg:             #0a0a0f;
    --color-bg-alt:         #0d0d14;
    --color-surface:        #111118;
    --color-surface-raised: #17171f;
    --color-border:         #1e1e2e;
    --color-border-subtle:  #14141e;
    --color-text-primary:   #f0eeff;
    --color-text-secondary: #9290b4;
    --color-text-readable:  #9e9cbf;
    --color-text-muted:     #7d7ba0;
    --color-success:        #22d47e;
    --color-warning:        #f5a623;
    --color-danger:         #ff4d6d;
    --color-info:           #41b3ff;
    --radius-card:          12px;
    --radius-input:         8px;
    --radius-btn:           100px;
    --radius-badge:         6px;
    --sidebar-width:        248px;
    --topnav-height:        68px;
    --transition:           180ms ease;
    --font-body:            'Montserrat Alternates', sans-serif;
    --font-heading:         'Outfit', sans-serif;
}

/* ── Reset & Base ─────────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
}

*:focus:not(:focus-visible) { outline: none; }
*:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 3px;
    border-radius: 4px;
}

::selection {
    background: var(--color-primary-glow);
    color: var(--color-text-primary);
}

::-webkit-scrollbar          { width: 4px; height: 4px; }
::-webkit-scrollbar-track    { background: var(--color-surface); }
::-webkit-scrollbar-thumb    { background: var(--color-border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-primary); }

html, body {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text-primary);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover, a:focus {
    color: var(--color-text-primary);
    text-decoration: none;
}

p, h1, h2, h3, h4, h5, h6 { margin-top: 0; }

hr {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 0;
}

img { max-width: 100%; }

/* ── Container / Section Wrappers ─────────────────────────────── */
.section-main, nav, footer {
    min-width: 100%;
    position: relative;
    display: block;
}

.section-in, .navbar-in, .header-in, .footer-in {
    width: 100%;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
    position: relative;
}

/* ================================================================
   PUBLIC NAVBAR
================================================================ */
.public-navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    height: 72px;
    background: rgba(10, 10, 15, 0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    /* border via box-shadow so ::after scroll line sits on top */
    box-shadow: inset 0 -1px 0 var(--color-border);
    transition: background 0.35s ease, box-shadow 0.35s ease;
}

/* Scroll-progress line — width driven by JS custom property */
.public-navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: var(--scroll-progress, 0%);
    background: linear-gradient(90deg, var(--color-primary) 0%, rgba(135, 65, 255, 0.25) 100%);
    pointer-events: none;
    z-index: 1;
    transition: width 0.08s linear;
}

/* Scrolled state — denser glass + violet border glow */
.public-navbar.scrolled {
    background: rgba(10, 10, 15, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow:
        inset 0 -1px 0 rgba(135, 65, 255, 0.28),
        0 8px 40px rgba(0, 0, 0, 0.55);
}

.public-navbar .navbar-in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo */
.navbar-brand-vv {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text-primary);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 0.5px;
    flex-shrink: 0;
    transition: color 0.22s ease;
}

.navbar-brand-vv img {
    height: 32px;
    transition: filter 0.25s ease, transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.navbar-brand-vv:hover img {
    filter: drop-shadow(0 0 10px rgba(135, 65, 255, 0.6));
    transform: scale(1.06);
}

.navbar-brand-vv:hover {
    color: var(--color-primary);
}

/* Nav links */
.navbar-links-vv {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-links-vv li {
    position: relative;
}

.navbar-links-vv a {
    position: relative;
    display: inline-flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-secondary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 6px;
    transition: color 0.2s ease, background 0.2s ease;
}

/* Animated underline */
.navbar-links-vv a::after {
    content: '';
    position: absolute;
    bottom: 1px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 1px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.24s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.navbar-links-vv a:hover {
    color: var(--color-text-primary);
    background: rgba(135, 65, 255, 0.07);
}

.navbar-links-vv a.active {
    color: var(--color-text-primary);
    background: rgba(135, 65, 255, 0.11);
}

.navbar-links-vv a:hover::after,
.navbar-links-vv a.active::after {
    transform: scaleX(1);
}

/* Right side */
.navbar-right-vv {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-right-vv .btn-vv-primary,
.navbar-right-vv .btn-vv-ghost,
.navbar-right-vv .btn-vv-secondary {
    font-family: var(--font-heading);
}

/* Language switcher in navbar */
.lang-switcher-vv .dropdown-toggle {
    background: none;
    border: 1px solid var(--color-border);
    color: var(--color-text-secondary);
    border-radius: var(--radius-input);
    padding: 6px 12px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.lang-switcher-vv .dropdown-toggle:hover {
    border-color: var(--color-primary);
    color: var(--color-text-primary);
}

/* Mobile hamburger — boxed icon with animated X */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    padding: 0;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.nav-hamburger:hover {
    background: rgba(135, 65, 255, 0.1);
    border-color: rgba(135, 65, 255, 0.35);
}

.nav-hamburger.open {
    background: rgba(135, 65, 255, 0.13);
    border-color: rgba(135, 65, 255, 0.5);
}

.nav-hamburger span {
    display: block;
    border-radius: 2px;
    background: var(--color-text-secondary);
    transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-hamburger span:nth-child(1) { width: 18px; height: 2px; }
.nav-hamburger span:nth-child(2) { width: 13px; height: 2px; } /* intentionally shorter */
.nav-hamburger span:nth-child(3) { width: 18px; height: 2px; }

/* Hamburger → X + accent colour when open */
.nav-hamburger.open span {
    background: var(--color-primary);
}
.nav-hamburger.open span:nth-child(1) {
    width: 18px;
    transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.nav-hamburger.open span:nth-child(3) {
    width: 18px;
    transform: translateY(-7px) rotate(-45deg);
}

/* Lock scroll when mobile nav is open */
body.nav-open {
    overflow: hidden;
}

/* ── Mobile nav overlay ─────────────────────────────────────── */
/* Always display:flex — animate via visibility/opacity/transform */
.mobile-nav-overlay {
    display: flex;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-bg);
    z-index: 99;
    padding: 8px 20px 32px;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
    transition:
        opacity 0.3s ease,
        transform 0.3s cubic-bezier(0.34, 1.4, 0.64, 1),
        visibility 0.3s;
}

/* Shimmer line at top of overlay */
.mobile-nav-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        var(--color-primary-glow),
        transparent);
    pointer-events: none;
}

.mobile-nav-overlay.open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Individual nav links — start hidden for stagger-in */
.mobile-nav-overlay > a {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text-secondary);
    background: var(--color-bg);
    padding: 15px 14px 15px 11px;
    border-left: 3px solid transparent;
    border-bottom: 1px solid var(--color-border-subtle, rgba(30, 30, 46, 0.7));
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    opacity: 0;
    transform: translateX(-22px);
    transition:
        opacity 0.22s ease,
        transform 0.22s ease,
        color 0.18s ease,
        border-left-color 0.18s ease;
}

.mobile-nav-overlay > a:hover {
    color: var(--color-text-primary);
}

.mobile-nav-overlay > a.active {
    color: var(--color-primary);
    font-weight: 700;
    border-left-color: var(--color-primary);
    text-shadow: 0 0 14px var(--color-primary-glow);
    background: linear-gradient(90deg, rgba(135, 65, 255, 0.12) 0%, transparent 65%);
}

/* Staggered slide-in when overlay opens */
.mobile-nav-overlay.open > a            { opacity: 1; transform: translateX(0); }
.mobile-nav-overlay.open > a:nth-child(1)  { transition-delay: 0.04s; }
.mobile-nav-overlay.open > a:nth-child(2)  { transition-delay: 0.08s; }
.mobile-nav-overlay.open > a:nth-child(3)  { transition-delay: 0.12s; }
.mobile-nav-overlay.open > a:nth-child(4)  { transition-delay: 0.16s; }
.mobile-nav-overlay.open > a:nth-child(5)  { transition-delay: 0.20s; }
.mobile-nav-overlay.open > a:nth-child(6)  { transition-delay: 0.24s; }
.mobile-nav-overlay.open > a:nth-child(7)  { transition-delay: 0.28s; }
.mobile-nav-overlay.open > a:nth-child(8)  { transition-delay: 0.32s; }
.mobile-nav-overlay.open > a:nth-child(9)  { transition-delay: 0.36s; }
.mobile-nav-overlay.open > a:nth-child(10) { transition-delay: 0.40s; }

/* CTA column at bottom — stacked so the Telegram widget can't cover either button */
.mobile-nav-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
    padding: 28px 0 80px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.26s ease 0.32s, transform 0.26s ease 0.32s;
}

.mobile-nav-overlay.open .mobile-nav-cta {
    opacity: 1;
    transform: translateY(0);
}

/* Button colour overrides — prevent the generic anchor rule from winning */
.mobile-nav-overlay .btn-vv-primary,
.mobile-nav-overlay .btn-vv-secondary { font-family: var(--font-heading); }
.mobile-nav-overlay .btn-vv-primary { color: #fff; border-color: var(--color-primary); box-shadow: 0 0 14px var(--color-primary-glow); }
.mobile-nav-overlay .btn-vv-primary:hover { color: #fff; border-color: var(--color-primary); box-shadow: 0 0 26px var(--color-primary-glow); }
.mobile-nav-overlay .btn-vv-secondary { color: var(--color-text-primary); border-color: rgba(255,255,255,0.45); box-shadow: none; }
.mobile-nav-overlay .btn-vv-secondary:hover { color: var(--color-text-primary); border-color: rgba(255,255,255,0.7); box-shadow: none; }
.mobile-nav-overlay .btn-vv-primary,
.mobile-nav-overlay .btn-vv-secondary { padding: 13px 28px; width: 100%; justify-content: center; }

/* ================================================================
   BUTTONS (Global)
================================================================ */
.btn-vv-primary,
.btn-vv-secondary,
.btn-vv-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 28px;
    border-radius: var(--radius-btn);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition);
    border: 1px solid transparent;
    white-space: nowrap;
    line-height: 1;
}

.btn-vv-primary {
    background: linear-gradient(135deg, #9d56ff 0%, #7c30f0 100%);
    color: #fff;
    border-color: transparent;
}

.btn-vv-primary:hover {
    color: #fff;
    background: linear-gradient(135deg, #b06bff 0%, #8741ff 100%);
    box-shadow: 0 0 24px rgba(135,65,255,0.5), 0 0 48px rgba(135,65,255,0.2);
    transform: translateY(-2px);
}

.btn-vv-primary:disabled,
.btn-vv-primary.vv-loading {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    pointer-events: none;
}

.btn-vv-primary.vv-loading::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: vv-spin 0.7s linear infinite;
    margin-left: 8px;
    vertical-align: -2px;
}

@keyframes vv-spin {
    to { transform: rotate(360deg); }
}

.btn-vv-secondary {
    background: transparent;
    color: var(--color-text-primary);
    border-color: var(--color-border);
}

.btn-vv-secondary:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-vv-ghost {
    background: var(--color-primary-dim);
    color: var(--color-primary);
    border-color: transparent;
}

.btn-vv-ghost:hover {
    background: var(--color-primary);
    color: #fff;
}

/* Bootstrap btn overrides — keep forms working */
.btn {
    font-family: var(--font-body);
    border-radius: var(--radius-btn);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all var(--transition);
}

.btn-primary,
.btn-primary:active,
.btn-primary:focus {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.btn-primary:hover {
    background-color: #9d5fff;
    border-color: #9d5fff;
    color: #fff;
    box-shadow: 0 0 18px var(--color-primary-glow);
}

.btn-default {
    background: transparent;
    border-color: var(--color-border);
    color: var(--color-text-secondary);
}

.btn-default:hover {
    background: var(--color-primary-dim);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* ================================================================
   FORM CONTROLS (Global)
================================================================ */
.form-control,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="search"],
input[type="url"],
input[type="tel"],
textarea,
select {
    width: 100%;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-input);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    padding: 11px 14px;
    transition: border-color var(--transition), box-shadow var(--transition);
    -webkit-appearance: none;
    appearance: none;
    box-shadow: none;
    color-scheme: dark;
}

.form-control:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
    background: var(--color-bg);
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px var(--color-primary-dim);
    color: var(--color-text-primary);
    outline: none;
}

/* Autofill override — prevents browser from forcing white/yellow background */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px var(--color-bg) inset !important;
    box-shadow: 0 0 0 1000px var(--color-bg) inset !important;
    -webkit-text-fill-color: var(--color-text-primary) !important;
    caret-color: var(--color-text-primary);
    border-color: var(--color-border) !important;
    transition: background-color 5000s ease-in-out 0s;
}

input:-webkit-autofill:focus {
    border-color: var(--color-primary) !important;
    -webkit-box-shadow: 0 0 0 1000px var(--color-bg) inset, 0 0 0 3px var(--color-primary-dim) !important;
    box-shadow: 0 0 0 1000px var(--color-bg) inset, 0 0 0 3px var(--color-primary-dim) !important;
}

.form-control::placeholder,
input::placeholder,
textarea::placeholder {
    color: var(--color-text-muted);
}

select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%237b7a9a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.vv-card label,
.dashboard-body-in label,
.public-page-header label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    margin-bottom: 6px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group:last-child {
    margin-bottom: 0;
}

/* Readonly / disabled */
input[readonly], input:disabled, textarea:disabled, select:disabled {
    background: var(--color-surface);
    color: var(--color-text-secondary);
    cursor: not-allowed;
    border-color: var(--color-border);
}

/* Checkbox & radio */
input[type="checkbox"],
input[type="radio"] {
    width: 16px;
    height: 16px;
    accent-color: var(--color-primary);
    cursor: pointer;
    border-radius: 4px;
}

.terms-accept-checkbox {
    margin-right: 8px;
    vertical-align: middle;
}

/* ================================================================
   ALERTS / NOTIFICATIONS
================================================================ */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius-card);
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    margin-bottom: 16px;
    background: var(--color-surface);
    color: var(--color-text-primary);
    max-height: 200px;
    overflow: hidden;
    transition: opacity 0.25s ease, max-height 0.3s ease,
                padding-top 0.3s ease, padding-bottom 0.3s ease,
                margin-bottom 0.3s ease;
}

.alert.vv-hiding {
    opacity: 0;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

.alert-success {
    border-color: var(--color-success);
    background: rgba(34, 212, 126, 0.08);
    color: var(--color-success);
}

.alert-danger {
    border-color: var(--color-danger);
    background: rgba(255, 77, 109, 0.08);
    color: var(--color-danger);
}

.alert-warning {
    border-color: var(--color-warning);
    background: rgba(245, 166, 35, 0.08);
    color: var(--color-warning);
}

.alert-info {
    border-color: var(--color-info);
    background: rgba(65, 179, 255, 0.08);
    color: var(--color-info);
}

.alert .close {
    background: none;
    border: none;
    color: inherit;
    opacity: 0.6;
    font-size: 18px;
    line-height: 1;
    padding: 0 4px;
    cursor: pointer;
    float: right;
    margin-left: 8px;
}

.alert .close:hover { opacity: 1; }

/* Fixed toast alert (global notifications) */
#notify-wrapper {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    min-width: 320px;
    max-width: 520px;
    text-align: center;
}

/* ================================================================
   CARDS / PANELS
================================================================ */
.vv-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    padding: 28px;
    position: relative;
}

.vv-card-sm {
    padding: 18px 20px;
}

.vv-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-border-subtle);
}

.vv-card-header-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--color-primary-dim);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.vv-card-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text-primary);
    letter-spacing: 0.3px;
}

/* Stat card variant — top gradient bleed */
.vv-stat-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    padding: 22px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.vv-stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary) 0%, transparent 100%);
    opacity: 0.5;
}

.vv-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.vv-stat-icon {
    width: 48px;
    min-width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--color-primary-dim);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.vv-stat-body { flex: 1; }

.vv-stat-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    margin-bottom: 4px;
}

.vv-stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text-primary);
    line-height: 1.2;
}

/* ================================================================
   DROPDOWN
================================================================ */
.dropdown-menu {
    background: var(--color-surface-raised);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    padding: 6px;
    min-width: 160px;
}

.dropdown-menu > li > a,
.dropdown-menu .dropdown-item {
    display: block;
    padding: 9px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-secondary);
    border-radius: 8px;
    transition: all var(--transition);
    border: none;
}

.dropdown-menu > li > a:hover,
.dropdown-menu .dropdown-item:hover {
    background: var(--color-primary-dim);
    color: var(--color-primary);
}

.dropdown-menu > li.active > a {
    background: var(--color-primary-dim);
    color: var(--color-primary);
}

/* Currency toggle button */
.currency-toggle {
    background: none;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-input);
    color: var(--color-text-secondary);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    padding: 7px 12px;
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.currency-toggle:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* ================================================================
   TABLES
================================================================ */
.vv-table-wrap {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    overflow: hidden;
}

.vv-table-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px;
    border-bottom: 1px solid var(--color-border);
    flex-wrap: wrap;
}

.vv-table-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text-primary);
    letter-spacing: 0.3px;
}

.vv-table-wrap table,
.dashboard-body-in table,
.table {
    width: 100%;
    border-collapse: collapse;
    color: var(--color-text-primary);
    font-size: 13px;
}

.table > thead > tr > th {
    padding: 12px 16px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    border-bottom: 1px solid var(--color-border);
    background: var(--color-surface);
    white-space: nowrap;
}

.table > tbody > tr > td {
    padding: 13px 16px;
    border-bottom: 1px solid var(--color-border-subtle);
    color: var(--color-text-primary);
    vertical-align: middle;
    font-size: 13px;
    background: transparent;
    transition: background var(--transition);
}

.table > tbody > tr:last-child > td {
    border-bottom: none;
}

.table > tbody > tr:hover > td {
    background: rgba(135, 65, 255, 0.04);
}

/* Category row in services table */
.vv-table-wrap .xn-table-category td,
.vv-table-wrap .service-category-row td {
    background: var(--color-primary-dim);
    color: var(--color-primary);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
}

/* Table responsive wrapper */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Service table specifics */
#service-table .service-name-cell {
    max-width: 320px;
}

.xn-service-id {
    font-weight: 600;
    color: var(--color-text-muted);
    font-size: 12px;
}

.xn-service-rate span {
    display: inline-block;
    padding: 4px 10px;
    background: var(--color-primary-dim);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-badge);
    font-size: 12px;
    font-weight: 600;
    color: var(--color-primary);
}

/* Favorite star */
.favorite-active .fa-star { color: var(--color-warning) !important; }
[data-favorite-service-id] {
    cursor: pointer;
    transition: color var(--transition);
}
[data-favorite-service-id]:hover .fa-star { color: var(--color-warning); }

/* ================================================================
   STATUS BADGES
================================================================ */
.badge, [class*="xn-status-"] {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: var(--radius-badge);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.xn-status-pending,
.badge-pending {
    background: rgba(245, 166, 35, 0.12);
    color: var(--color-warning);
    border: 1px solid rgba(245, 166, 35, 0.25);
}

.xn-status-inprogress,
.xn-status-processing,
.badge-inprogress {
    background: rgba(65, 179, 255, 0.12);
    color: var(--color-info);
    border: 1px solid rgba(65, 179, 255, 0.25);
}

.xn-status-completed,
.xn-status-Active,
.xn-status-Finished,
.badge-completed {
    background: rgba(34, 212, 126, 0.12);
    color: var(--color-success);
    border: 1px solid rgba(34, 212, 126, 0.25);
}

.xn-status-partial,
.badge-partial {
    background: rgba(135, 65, 255, 0.12);
    color: var(--color-primary);
    border: 1px solid rgba(135, 65, 255, 0.25);
}

.xn-status-canceled,
.xn-status-Stopped,
.xn-status-rejected,
.xn-status-error,
.badge-canceled {
    background: rgba(255, 77, 109, 0.12);
    color: var(--color-danger);
    border: 1px solid rgba(255, 77, 109, 0.25);
}

/* ================================================================
   PAGINATION
================================================================ */
.pagination {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
    flex-wrap: wrap;
}

.pagination > li > a,
.pagination > li > span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border-radius: 8px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    color: var(--color-text-secondary);
    font-size: 13px;
    font-weight: 500;
    transition: all var(--transition);
    cursor: pointer;
}

.pagination > li > a:hover {
    background: var(--color-primary-dim);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.pagination > li.active > a,
.pagination > li.active > span,
a.page-active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

/* ================================================================
   MODALS (Bootstrap 3 overrides)
================================================================ */
.modal-content {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
}

.modal-header {
    border-bottom: 1px solid var(--color-border);
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text-primary);
}

.modal-header .close {
    background: none;
    border: none;
    color: var(--color-text-secondary);
    font-size: 22px;
    cursor: pointer;
    padding: 0;
    transition: color var(--transition);
    float: right;
    margin-top: -2px;
}

.modal-header .close:hover { color: var(--color-text-primary); }

.modal-body {
    padding: 24px;
    color: var(--color-text-secondary);
}

.modal-footer {
    border-top: 1px solid var(--color-border);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.modal-backdrop { background: rgba(0, 0, 0, 0.7); }
.modal-backdrop.in { opacity: 1; }

/* ================================================================
   SIDEBAR (Dashboard)
================================================================ */
body.dashboard {
    display: flex;
    height: 100vh;
    overflow: hidden;
}

.vv-sidebar {
    width: var(--sidebar-width);
    min-width: var(--sidebar-width);
    height: 100vh;
    background: var(--color-surface);
    border-right: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 200;
    overflow: hidden;
}

/* Sidebar brand */
.sidebar-brand {
    height: 68px;
    min-height: 68px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    border-bottom: 1px solid var(--color-border);
    flex-shrink: 0;
}

.sidebar-brand-logo {
    height: 28px;
}

.sidebar-brand-name {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 800;
    color: var(--color-text-primary);
    letter-spacing: 0.3px;
}

/* Sidebar scroll body */
.sidebar-body {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Nav section label */
.sidebar-section-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    padding: 0 8px;
    margin-bottom: 6px;
    margin-top: 16px;
}

.sidebar-section-label:first-child { margin-top: 0; }

/* Nav links */
.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--color-text-secondary);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.2px;
    text-decoration: none;
    transition: all var(--transition);
    position: relative;
}

.sidebar-link i {
    width: 18px;
    font-size: 15px;
    text-align: center;
    flex-shrink: 0;
    color: var(--color-text-muted);
    transition: color var(--transition);
}

.sidebar-link:hover {
    background: var(--color-primary-dim);
    color: var(--color-text-primary);
}

.sidebar-link:hover i {
    color: var(--color-primary);
}

.sidebar-link.active {
    background: var(--color-primary-dim);
    color: var(--color-text-primary);
}

.sidebar-link.active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 3px;
    background: var(--color-primary);
    border-radius: 0 3px 3px 0;
}

.sidebar-link.active i {
    color: var(--color-primary);
}

.sidebar-link:focus-visible {
    outline: none;
    background: var(--color-primary-dim);
    color: var(--color-text-primary);
}
.sidebar-link:focus-visible::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 3px;
    background: var(--color-primary);
    border-radius: 0 3px 3px 0;
}
.sidebar-link:focus-visible i {
    color: var(--color-primary);
}

/* Badge on sidebar link (e.g. unread tickets) */
.sidebar-badge {
    margin-left: auto;
    background: var(--color-primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 100px;
    padding: 1px 7px;
    min-width: 18px;
    text-align: center;
}

/* Sidebar user footer */
.sidebar-user {
    border-top: 1px solid var(--color-border);
    padding: 14px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
}

.sidebar-avatar {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--color-primary-dim);
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-user-info { flex: 1; min-width: 0; }

.sidebar-user-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-primary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sidebar-user-email {
    font-size: 11px;
    color: var(--color-text-muted);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
}

/* ================================================================
   DASHBOARD BODY + TOPNAV
================================================================ */
.dashboard-body {
    margin-left: var(--sidebar-width);
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
}

.dashboard-top-nav {
    height: var(--topnav-height);
    min-height: var(--topnav-height);
    border-bottom: 1px solid var(--color-border);
    background: var(--color-surface);
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-shrink: 0;
    z-index: 10;
}

.topnav-page-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 800;
    color: var(--color-text-primary);
    margin: 0;
    line-height: 1.2;
}

.topnav-page-title span {
    color: var(--color-primary);
}

.topnav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.topnav-icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: none;
    border: 1px solid var(--color-border);
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.topnav-icon-btn:hover {
    background: var(--color-primary-dim);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* Balance display in topnav */
.topnav-balance {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    background: var(--color-primary-dim);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-btn);
    font-size: 13px;
    font-weight: 700;
    color: var(--color-primary);
    white-space: nowrap;
}

/* Dashboard scrollable content area */
.dashboard-body-in {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    padding: 28px;
}

/* ================================================================
   PAGE HEADER (inside dashboard pages)
================================================================ */
.vv-page-header {
    margin-bottom: 24px;
}

.vv-page-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--color-text-primary);
    margin: 0 0 4px 0;
    letter-spacing: -0.3px;
}

.vv-page-subtitle {
    font-size: 13px;
    color: var(--color-text-secondary);
    margin: 0;
}

/* ================================================================
   SIGNIN.TWIG — Marketing Landing Page
================================================================ */

/* Hero */
.vv-hero {
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    position: relative;
    overflow: hidden;
}

/* ── Hero background decoration ──────────────────────────────── */
.vv-hero-bg-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

/* Layer 1 — Perspective vanishing-point grid */
.vv-hero-perspective-wrap {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 55%;
    perspective: 500px;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.vv-hero-perspective-grid {
    width: 220%;
    height: 200%;
    margin-left: -60%;
    background-image:
        linear-gradient(rgba(135,65,255,0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(135,65,255,0.07) 1px, transparent 1px);
    background-size: 80px 80px;
    transform: rotateX(65deg);
    transform-origin: center top;
    opacity: 0.55;
    mask-image: linear-gradient(to bottom, transparent 0%, black 45%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 45%);
}

/* Layer 1b — Film grain noise overlay */
.vv-hero-noise {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.028;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 250px 250px;
    background-repeat: repeat;
}

/* Layer 2 — Floating orbs */
.vv-orb-1,
.vv-orb-2,
.vv-orb-3,
.vv-orb-5 {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}
/* Promote only the two most prominent orbs to compositor layers;
   keeping all 4 promoted simultaneously creates 4 GPU layers on mobile */
.vv-orb-1,
.vv-orb-5 {
    will-change: transform;
}

.vv-orb-1 {
    width: 700px; height: 700px;
    top: -150px; left: -100px;
    background: radial-gradient(circle, rgba(135,65,255,0.14) 0%, transparent 65%);
    animation: float-orb-1 16s ease-in-out infinite alternate;
}
@keyframes float-orb-1 {
    from { transform: translate(0, 0); }
    to   { transform: translate(60px, 80px); }
}

.vv-orb-2 {
    width: 500px; height: 500px;
    bottom: -100px; right: -50px;
    background: radial-gradient(circle, rgba(104,32,224,0.10) 0%, transparent 65%);
    animation: float-orb-2 20s ease-in-out infinite alternate;
}
@keyframes float-orb-2 {
    from { transform: translate(0, 0); }
    to   { transform: translate(-70px, -50px); }
}

.vv-orb-3 {
    width: 400px; height: 400px;
    top: 40%; left: 55%;
    background: radial-gradient(circle, rgba(65,179,255,0.07) 0%, transparent 65%);
    animation: float-orb-3 13s ease-in-out infinite alternate;
}
@keyframes float-orb-3 {
    from { transform: translate(0, 0); }
    to   { transform: translate(40px, -60px); }
}


.vv-orb-5 {
    width: 350px; height: 350px;
    bottom: 20%; left: 30%;
    background: radial-gradient(circle, rgba(179,65,255,0.09) 0%, transparent 65%);
    animation: float-orb-5 17s ease-in-out infinite alternate;
}
@keyframes float-orb-5 {
    from { transform: translate(0, 0); }
    to   { transform: translate(55px, -40px); }
}

/* Layer 3 — Diagonal beam sweep */
.vv-hero-beam {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 220%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(135,65,255,0.18) 40%, rgba(135,65,255,0.25) 50%, rgba(135,65,255,0.18) 60%, transparent 100%);
    transform: rotate(-30deg) translateY(0);
    transform-origin: left center;
    opacity: 0.04;
    animation: beam-sweep 18s ease-in-out infinite alternate;
}
@keyframes beam-sweep {
    from { transform: rotate(-30deg) translateY(-30px); opacity: 0.03; }
    to   { transform: rotate(-30deg) translateY(calc(100vh + 30px)); opacity: 0.06; }
}

.vv-hero-inner {
    display: grid;
    grid-template-columns: 1fr minmax(340px, 420px);
    gap: 40px;
    align-items: center;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 100px 40px 80px;
    position: relative;
    z-index: 1;
}

/* Hero left — copy */
.vv-hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 20px;
    /* Visually breaks onto its own line above the H1 text while staying
       inside <h1> for SEO — crawlers see brand name as part of the heading */
    line-height: 1;
}

.vv-hero-eyebrow::before {
    content: "";
    display: block;
    flex-shrink: 0;
    align-self: center;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 0 6px var(--color-primary-glow);
    animation: vv-dot-ping 2s ease-out infinite;
    transform-origin: center;
}

.vv-hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    color: var(--color-text-primary);
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.vv-hero-headline em,
.vv-hero-headline .vv-gradient-text {
    font-style: normal;
    background: linear-gradient(135deg, #c77dff 0%, #8741ff 55%, #6341e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vv-hero-sub {
    font-size: 16px;
    color: var(--color-text-readable);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}

/* Live stats ticker row */
.vv-stats-ticker {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.vv-stat-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--color-text-secondary);
}

.vv-stat-pill-num {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: var(--color-text-primary);
    line-height: 1;
}

.vv-stat-pill-divider {
    width: 1px;
    height: 20px;
    background: var(--color-border);
}

.vv-hero-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* Hero right — login card */
@keyframes vv-aurora-spin {
    to { --vv-aurora-angle: 360deg; }
}

.vv-login-card {
    background: linear-gradient(160deg, var(--color-surface) 0%, var(--color-surface-raised) 100%);
    border: 1px solid rgba(135,65,255,0.3); /* fallback for browsers without @property */
    border-radius: var(--radius-card);
    padding: 36px;
    position: relative;
    box-shadow:
        0 32px 80px rgba(0,0,0,0.5),
        inset 0 1px 0 rgba(135,65,255,0.2);
    isolation: isolate;
}

/* Aurora rotating border (requires @property --vv-aurora-angle) */
.vv-login-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: calc(var(--radius-card) + 1px);
    z-index: -1;
    background: conic-gradient(
        from var(--vv-aurora-angle),
        rgba(135,65,255,0.75),
        rgba(65,179,255,0.3),
        rgba(135,65,255,0.0),
        rgba(135,65,255,0.0),
        rgba(135,65,255,0.75)
    );
    animation: vv-aurora-spin 9s linear infinite;
    pointer-events: none;
}

/* Inner mask — ensures only the 1px border ring glows */
.vv-login-card::after {
    content: "";
    position: absolute;
    inset: 1px;
    background: linear-gradient(160deg, var(--color-surface) 0%, var(--color-surface-raised) 100%);
    border-radius: calc(var(--radius-card) - 1px);
    z-index: -1;
    pointer-events: none;
}

.vv-login-card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: var(--color-text-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vv-login-card-icon {
    width: 32px;
    height: 32px;
    background: var(--color-primary-dim);
    border: 1px solid var(--color-primary-glow);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 14px;
    flex-shrink: 0;
}

.vv-login-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.vv-login-form .form-control {
    width: 100%;
}

.vv-login-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
}

.vv-remember-label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    line-height: 1;
    color: var(--color-text-secondary);
    cursor: pointer;
    user-select: none;
    margin: 0;
}

.vv-remember-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.vv-checkbox-box {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    border: 1.5px solid var(--color-border);
    border-radius: 4px;
    background: var(--color-bg);
    position: relative;
    transition: background 180ms ease, border-color 180ms ease;
}

.vv-remember-text {
    line-height: 15px;
    vertical-align: middle;
}

.vv-remember-label input[type="checkbox"]:checked ~ .vv-checkbox-box {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.vv-remember-label input[type="checkbox"]:checked ~ .vv-checkbox-box::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 4px;
    height: 8px;
    border: 1.5px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

.vv-forgot-link {
    display: flex;
    align-items: center;
    font-size: 12px;
    line-height: 1;
    color: var(--color-text-secondary);
    transition: color var(--transition);
}

.vv-forgot-link:hover { color: var(--color-primary); }

.vv-forgot-mobile { display: none; }

.vv-login-form .btn-vv-primary,
.vv-login-form .btn-primary {
    width: 100%;
    padding: 13px;
}

.vv-register-prompt {
    margin-top: 18px;
    font-size: 13px;
    color: var(--color-text-readable);
    text-align: center;
}

.vv-register-prompt a {
    color: var(--color-primary);
    font-weight: 600;
}

/* Scrolling marquee of platforms */
.vv-marquee-wrap {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.vv-marquee-wrap::before,
.vv-marquee-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 140px;
    z-index: 2;
    pointer-events: none;
}

.vv-marquee-wrap::before {
    left: 0;
    background: linear-gradient(90deg, var(--color-bg), transparent);
}

.vv-marquee-wrap::after {
    right: 0;
    background: linear-gradient(-90deg, var(--color-bg), transparent);
}

.vv-marquee-track {
    display: flex;
    gap: 48px;
    animation: marquee-scroll 28s linear infinite;
    width: max-content;
    align-items: center;
    will-change: transform;
}

@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.vv-marquee-track:hover {
    animation-play-state: paused;
}

.vv-marquee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-secondary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    background: rgba(135,65,255,0.06);
    border: 1px solid rgba(135,65,255,0.15);
    border-radius: 100px;
    padding: 8px 16px;
    transition: all var(--transition);
}

.vv-marquee-item i {
    font-size: 16px;
}

.vv-marquee-item:hover {
    border-color: var(--color-primary-glow);
    background: var(--color-primary-dim);
    color: var(--color-text-primary);
}

/* Brand icon colors */
.vv-marquee-item .fa-instagram  { color: #e1306c; }
.vv-marquee-item .fa-tiktok     { color: #69c9d0; }
.vv-marquee-item .fa-youtube    { color: #ff3333; }
.vv-marquee-item .fa-twitter    { color: #1d9bf0; }
.vv-marquee-item .fa-facebook   { color: #1877f2; }
.vv-marquee-item .fa-spotify    { color: #1ed760; }
.vv-marquee-item .fa-twitch     { color: #9146ff; }
.vv-marquee-item .fa-telegram   { color: #26a5e4; }
.vv-marquee-item .fa-discord    { color: #5865f2; }
.vv-marquee-item .fa-soundcloud { color: #ff5500; }
.vv-marquee-item .fa-linkedin   { color: #0a66c2; }
.vv-marquee-item .fa-pinterest  { color: #e60023; }

/* Features grid */
.vv-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 60px 0;
}

.vv-feature-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    padding: 28px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.vv-feature-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(135, 65, 255, 0.1), inset 0 1px 0 rgba(135,65,255,0.15);
}

/* Top accent bar — slides in on hover */
.vv-feature-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--color-primary);
    border-radius: var(--radius-card) var(--radius-card) 0 0;
    transform: scaleX(0);
    transition: transform 300ms ease;
    z-index: 1;
}
.vv-feature-card:hover::before { transform: scaleX(1); }

/* Shimmer sweep — fires once on hover */
.vv-feature-card::after {
    content: "";
    position: absolute;
    top: 0; left: -80%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(135,65,255,0.06), transparent);
    transform: skewX(-20deg);
    pointer-events: none;
}
.vv-feature-card:hover::after {
    animation: feat-shimmer 0.65s ease forwards;
}
@keyframes feat-shimmer {
    to { left: 200%; }
}

/* Icon glow on hover */
.vv-feature-card:hover .vv-feature-icon {
    box-shadow: 0 0 0 8px rgba(135,65,255,0.10), 0 0 20px rgba(135,65,255,0.20);
    background: rgba(135,65,255,0.18);
}

.vv-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--color-primary-dim);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 16px;
    box-shadow: 0 0 0 4px rgba(135,65,255,0.06);
    transition: all 200ms ease;
}

.vv-feature-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 8px;
}

.vv-feature-desc {
    font-size: 13px;
    color: var(--color-text-readable);
    line-height: 1.7;
}

/* Features section — top-center ambient bleed */
.vv-features-section {
    position: relative;
}
.vv-features-section::before {
    content: "";
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 320px;
    background: radial-gradient(ellipse, rgba(109,40,217,0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* How It Works section — alt background + gradient seam */
.vv-how-section {
    background: var(--color-bg-alt);
    position: relative;
}
.vv-how-section::before {
    content: "";
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(135,65,255,0.35) 50%,
        transparent 100%
    );
    pointer-events: none;
}

/* Who It's For section — gradient seam + left-side directional glow */
.vv-who-section {
    position: relative;
}
.vv-who-section::before {
    content: "";
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(135,65,255,0.35) 50%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 0;
}
.vv-who-section::after {
    content: "";
    position: absolute;
    left: -80px; top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 650px;
    background: radial-gradient(ellipse, rgba(109,40,217,0.07) 0%, transparent 65%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
}

/* FAQ section wrapper — alt background + gradient seam + bottom ambient */
.vv-faq-section-wrap {
    background: var(--color-bg-alt);
    position: relative;
}
.vv-faq-section-wrap::before {
    display: none;
}
.vv-faq-section-wrap::after {
    content: "";
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 260px;
    background: radial-gradient(ellipse, rgba(109,40,217,0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* ── What is an SMM Panel section ──────────────────────────────── */
.vv-whatis-section {
    padding: 80px 0;
    position: relative;
    background: var(--color-surface);
    overflow: hidden;
}

.vv-whatis-section::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(135,65,255,0.07) 0%, transparent 65%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

/* Section header (centred) */
.vv-whatis-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
    position: relative;
    z-index: 1;
}

.vv-whatis-header .vv-section-sub {
    max-width: none;
    font-size: 16px;
    margin-top: 12px;
}

/* Shared section typography — used across all landing sections */
.vv-section-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.vv-section-eyebrow::before {
    content: "";
    display: block;
    flex-shrink: 0;
    align-self: center;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 0 6px var(--color-primary-glow);
    animation: vv-dot-ping 2s ease-out infinite;
    transform-origin: center;
}

@keyframes vv-dot-ping {
    0%   { transform: scale(1);   opacity: 0.8; }
    70%  { transform: scale(2.2); opacity: 0;   }
    100% { transform: scale(2.2); opacity: 0;   }
}

.vv-section-title {
    font-family: var(--font-heading);
    font-size: clamp(22px, 3.5vw, 36px);
    font-weight: 800;
    color: var(--color-text-primary);
    letter-spacing: -0.5px;
    margin-bottom: 8px;
    line-height: 1.15;
}

.vv-section-title em,
.vv-section-title .vv-gradient-text {
    font-style: normal;
    background: linear-gradient(135deg, #c77dff 0%, #8741ff 55%, #6341e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vv-section-sub {
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    max-width: 480px;
}

/* Centered definition paragraph */
.vv-whatis-body {
    max-width: 640px;
    margin: 0 auto 48px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.vv-whatis-body p {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.75;
    margin: 0;
}

.vv-whatis-body strong {
    color: var(--color-text-primary);
    font-weight: 600;
}

/* 3-column "Who uses" card grid */
/* Full-width stat strip */
.vv-whatis-stats {
    display: flex;
    align-items: center;
    background: var(--color-surface-raised);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    padding: 20px 32px;
    position: relative;
    z-index: 1;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.vv-whatis-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    gap: 3px;
}

.vv-whatis-stat-num {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--color-text-primary);
    letter-spacing: -0.5px;
}

.vv-whatis-stat-label {
    font-size: 10px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: .07em;
    font-weight: 500;
}

.vv-whatis-stat-div {
    width: 1px;
    height: 36px;
    background: var(--color-border);
    flex-shrink: 0;
}

/* ── Service Catalog Bento ──────────────────────────────────────── */
.vv-catalog-section { padding: 80px 0; }

.vv-catalog-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 48px;
}

.vv-catalog-bento {
    display: grid;
    grid-template-areas:
        "followers followers likes"
        "followers followers views"
        "comments  shares    traffic";
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

/* Base card */
.vv-bento-card {
    --card-accent: var(--color-primary);
    --card-accent-dim: var(--color-primary-dim);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    overflow: hidden;
    position: relative;
    transition: all var(--transition);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.vv-bento-card:hover {
    border-color: var(--card-accent);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px var(--color-primary-glow), inset 0 1px 0 var(--color-primary-dim);
    box-shadow: 0 12px 40px color-mix(in srgb, var(--card-accent) 12%, transparent), inset 0 1px 0 color-mix(in srgb, var(--card-accent) 18%, transparent);
}

/* Top accent bar */
.vv-bento-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--card-accent);
    border-radius: var(--radius-card) var(--radius-card) 0 0;
    transform: scaleX(0);
    transition: transform 300ms ease;
    z-index: 2;
}
.vv-bento-card:hover::before { transform: scaleX(1); }

/* Shimmer sweep */
.vv-bento-card::after {
    content: "";
    position: absolute;
    top: 0; left: -80%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(135,65,255,0.06), transparent);
    transform: skewX(-20deg);
    pointer-events: none;
}
.vv-bento-card:hover::after {
    animation: bento-shimmer 0.65s ease forwards;
}
@keyframes bento-shimmer {
    to { left: 200%; }
}

/* Hero cell */
.vv-bento-hero {
    background: var(--color-surface);
    background-image: radial-gradient(ellipse at 20% 10%, rgba(135,65,255,0.07) 0%, transparent 65%);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 340px;
}

.vv-bento-ghost-num {
    position: absolute;
    bottom: -12px;
    right: 16px;
    font-family: var(--font-heading);
    font-size: 130px;
    font-weight: 800;
    color: var(--color-primary);
    opacity: 0.055;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    letter-spacing: -4px;
}

.vv-bento-hero-body {
    position: relative;
    z-index: 1;
    flex: 1;
}

.vv-bento-hero-top { margin-bottom: 20px; }

.vv-bento-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--color-primary);
    background: var(--color-primary-dim);
    border: 1px solid rgba(135,65,255,0.2);
    border-radius: 100px;
    padding: 4px 10px;
}

.vv-bento-hero-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--color-primary-dim);
    border: 1px solid rgba(135,65,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 20px;
    color: var(--color-primary);
}

.vv-bento-name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text-primary);
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.vv-bento-desc {
    font-size: 13px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 280px;
}

.vv-bento-platforms {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.vv-bento-plat {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: background 180ms ease, border-color 180ms ease;
}

.vv-bento-plat:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.12);
}

.vv-bento-more {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-text-muted);
    padding: 0 6px;
    letter-spacing: .03em;
}

.vv-bento-hero-stat {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
    margin-top: 24px;
    position: relative;
    z-index: 1;
}

.vv-bento-stat-num {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: -1px;
}

.vv-bento-stat-label {
    font-size: 12px;
    color: var(--color-text-muted);
    font-weight: 500;
    letter-spacing: .03em;
}

.vv-bento-hero-cta {
    margin-left: auto;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    letter-spacing: .02em;
    display: flex;
    align-items: center;
    gap: 4px;
    opacity: 0.75;
    transition: opacity 160ms ease, gap 160ms ease;
}
.vv-bento-hero-cta:hover {
    opacity: 1;
    gap: 7px;
    color: var(--color-primary);
    text-decoration: none;
}

/* Small cells */
.vv-bento-sm {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vv-bento-tall {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: space-between;
}

.vv-bento-sm-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--card-accent-dim, var(--color-primary-dim));
    border: 1px solid var(--color-primary-glow);
    border: 1px solid color-mix(in srgb, var(--card-accent) 20%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--card-accent, var(--color-primary));
    flex-shrink: 0;
    margin-bottom: 4px;
}

.vv-bento-sm .vv-bento-name,
.vv-bento-tall .vv-bento-name {
    font-size: 15px;
    margin-bottom: 0;
}

.vv-bento-sm-sub {
    font-size: 12px;
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* Mini bar chart in Views cell */
.vv-bento-bar-group {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 48px;
    margin-top: auto;
    padding-top: 12px;
}

.vv-bento-bar {
    flex: 1;
    height: var(--bar-height, 50%);
    border-radius: 3px 3px 0 0;
    background: var(--card-accent, var(--color-primary));
    opacity: 0.28;
    transform-origin: bottom;
    animation: bar-grow 0.6s cubic-bezier(0.22,1,0.36,1) both;
    animation-delay: calc(var(--bar-i, 0) * 80ms + 0.4s);
    transition: opacity 220ms ease;
}
@keyframes bar-grow {
    from { transform: scaleY(0); }
    to   { transform: scaleY(1); }
}
.vv-bento-tall:hover .vv-bento-bar { opacity: 0.55; }

/* Keyword service tags — SEO text + fills space */
.vv-bento-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 16px;
}

.vv-bento-tags span {
    font-size: 11px;
    font-weight: 500;
    color: var(--color-text-muted);
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    padding: 3px 8px;
    white-space: nowrap;
    letter-spacing: .02em;
    cursor: default;
}

/* ── Popular Services section ────────────────────────────────────── */
.vv-popular-section {
    background: var(--color-surface);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

/* Top seam */
.vv-popular-section::before {
    content: "";
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(135,65,255,0.3) 50%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 0;
}

/* Centered ambient glow */
.vv-popular-section::after {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(135,65,255,0.07) 0%, transparent 65%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
}

.vv-popular-header {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 52px;
    position: relative;
    z-index: 1;
}

.vv-popular-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

/* Service card */
.vv-popular-card {
    --card-accent: var(--color-primary);
    background: var(--color-surface-raised);
    background-image: none;
    background-image: radial-gradient(
        ellipse at 0% 0%,
        color-mix(in srgb, var(--card-accent) 6%, transparent) 0%,
        transparent 55%
    );
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    padding: 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

/* Top accent bar */
.vv-popular-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--card-accent);
    border-radius: var(--radius-card) var(--radius-card) 0 0;
    transform: scaleX(0);
    transition: transform 300ms ease;
    z-index: 1;
}

.vv-popular-card:hover {
    border-color: var(--color-primary-glow);
    border-color: color-mix(in srgb, var(--card-accent) 45%, transparent);
    transform: translateY(-4px);
    box-shadow: 0 14px 44px var(--color-primary-glow), inset 0 1px 0 var(--color-primary-dim);
    box-shadow: 0 14px 44px color-mix(in srgb, var(--card-accent) 12%, transparent),
                inset 0 1px 0 color-mix(in srgb, var(--card-accent) 15%, transparent);
}

.vv-popular-card:hover::before {
    transform: scaleX(1);
}

.vv-popular-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    gap: 8px;
}

/* Colored platform pill */
.vv-popular-platform {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .03em;
    padding: 4px 10px;
    border-radius: 100px;
    line-height: 1;
}

/* Trending badge */
.vv-popular-badge {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--color-warning);
    background: rgba(245,166,35,0.14);
    border: 1px solid rgba(245,166,35,0.25);
    border-radius: 100px;
    padding: 3px 8px;
    flex-shrink: 0;
    animation: badge-pulse 2.4s ease-in-out infinite;
}
@keyframes badge-pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.6; }
}

.vv-popular-name {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 14px;
    letter-spacing: -0.3px;
    flex: 1;
}

.vv-popular-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    gap: 8px;
}

.vv-popular-quality {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    color: var(--card-accent);
    background: var(--color-primary-dim);
    background: color-mix(in srgb, var(--card-accent) 12%, transparent);
    padding: 3px 10px;
    border-radius: 100px;
    letter-spacing: 0.2px;
}

.vv-popular-delivery {
    font-size: 12px;
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    gap: 5px;
}

.vv-popular-delivery i {
    color: var(--color-success);
    font-size: 10px;
    transition: color 180ms ease;
}
.vv-popular-card:hover .vv-popular-delivery i {
    color: var(--card-accent);
}

/* CTA button — platform-colored ghost, fills on hover */
.vv-popular-cta {
    display: block;
    text-align: center;
    padding: 9px 16px;
    border: 1px solid var(--color-primary-glow);
    border: 1px solid color-mix(in srgb, var(--card-accent) 35%, transparent);
    border-radius: var(--radius-btn);
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--card-accent);
    background: var(--color-primary-dim);
    background: color-mix(in srgb, var(--card-accent) 7%, transparent);
    text-decoration: none;
    transition: border-color 180ms ease, color 180ms ease, background 180ms ease, box-shadow 180ms ease;
    margin-top: auto;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 1;
}

.vv-popular-cta:hover {
    border-color: var(--card-accent);
    color: #fff;
    background: var(--card-accent);
    box-shadow: 0 0 20px var(--color-primary-glow);
    box-shadow: 0 0 20px color-mix(in srgb, var(--card-accent) 50%, transparent);
    text-decoration: none;
}

/* Footer CTA strip */
.vv-popular-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 28px;
    background: var(--color-surface-raised);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    position: relative;
    z-index: 1;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.vv-popular-footer p {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin: 0;
    line-height: 1.5;
}

.vv-popular-footer strong {
    color: var(--color-text-primary);
    font-weight: 600;
}

/* ── Results from Real Clients ──────────────────────────────────── */
.vv-results-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background-color: var(--color-bg);
    background-image: radial-gradient(circle, rgba(135,65,255,0.065) 1px, transparent 1px);
    background-size: 28px 28px;
}
.vv-results-section::before {
    content: "";
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(135,65,255,0.45), transparent);
    pointer-events: none;
}
.vv-results-section .section-in { position: relative; z-index: 1; }

.vv-results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 56px;
}

.vv-result-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
}
.vv-result-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--card-accent, var(--color-primary));
    opacity: 0.8;
}
.vv-result-card:hover {
    border-color: var(--color-primary-glow);
    border-color: color-mix(in srgb, var(--card-accent, var(--color-primary)) 60%, transparent);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(135,65,255,0.12);
}
.vv-result-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.vv-result-platform {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
    background: var(--card-accent-dim, var(--color-primary-dim));
    color: var(--card-accent, var(--color-primary));
}
.vv-result-stars {
    display: flex;
    gap: 2px;
    color: var(--color-warning);
    font-size: 11px;
}
.vv-result-metric {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    color: var(--color-text-primary);
    letter-spacing: -1.5px;
    line-height: 1;
}
.vv-result-metric-sub {
    font-size: 12px;
    color: var(--color-text-muted);
    font-weight: 500;
    margin-top: 2px;
}
.vv-result-quote {
    font-size: 13px;
    color: var(--color-text-secondary);
    line-height: 1.65;
    flex: 1;
    font-style: italic;
}
.vv-result-author {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid var(--color-border);
    margin-top: auto;
}
.vv-result-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--card-accent-dim, var(--color-primary-dim));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--card-accent, var(--color-primary));
    font-weight: 700;
    flex-shrink: 0;
    border: 1px solid var(--color-primary-glow);
    border: 1px solid color-mix(in srgb, var(--card-accent, var(--color-primary)) 30%, transparent);
}
.vv-result-author-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-primary);
    line-height: 1.2;
}
.vv-result-author-role {
    font-size: 11px;
    color: var(--color-text-muted);
    margin-top: 1px;
}

/* FAQ */
.vv-faq-section {
    padding: 80px 0;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.vv-faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vv-faq-item {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: border-color var(--transition);
    position: relative;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.vv-faq-item.open,
.vv-faq-item:hover {
    border-color: var(--color-primary);
}

/* Animated left accent strip */
.vv-faq-item::before {
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--color-primary);
    border-radius: 0 2px 2px 0;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 280ms ease;
    z-index: 1;
}
.vv-faq-item.open::before { transform: scaleY(1); }

.vv-faq-trigger {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px;
    cursor: pointer;
    text-align: left;
    color: var(--color-text-primary);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    transition: color var(--transition);
}

.vv-faq-trigger:hover { color: var(--color-primary); }

.vv-faq-trigger i {
    font-size: 13px;
    color: var(--color-text-muted);
    transition: transform var(--transition);
    flex-shrink: 0;
}

.vv-faq-item.open .vv-faq-trigger i {
    transform: rotate(45deg);
    color: var(--color-primary);
}

.vv-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 280ms ease;
}

.vv-faq-item.open .vv-faq-answer {
    max-height: 400px;
}

.vv-faq-answer-inner {
    padding: 0 20px 18px;
    font-size: 13px;
    color: var(--color-text-readable);
    line-height: 1.7;
    border-top: 1px solid var(--color-border-subtle);
    padding-top: 14px;
}

/* CTA Outro */
.vv-outro {
    background: linear-gradient(135deg, rgba(135,65,255,0.12) 0%, rgba(135,65,255,0.04) 100%);
    border: 1px solid rgba(135,65,255,0.28);
    border-radius: var(--radius-card);
    padding: 60px;
    text-align: center;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 80px rgba(135,65,255,0.06);
}

.vv-outro::before {
    content: "";
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(135, 65, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.vv-outro::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    border-radius: var(--radius-card);
    background-image:
        radial-gradient(2px   2px   at  8%  18%, rgba(255,255,255,0.70) 0%, transparent 100%),
        radial-gradient(2px   2px   at 22%  72%, rgba(255,255,255,0.55) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 40%   8%, rgba(255,255,255,0.75) 0%, transparent 100%),
        radial-gradient(2.5px 2.5px at 60%  40%, rgba(135,65,255,0.90) 0%, transparent 100%),
        radial-gradient(2px   2px   at 75%  82%, rgba(255,255,255,0.60) 0%, transparent 100%),
        radial-gradient(3px   3px   at 88%  12%, rgba(135,65,255,1.00) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 14%  52%, rgba(255,255,255,0.50) 0%, transparent 100%),
        radial-gradient(2.5px 2.5px at 50%  68%, rgba(135,65,255,0.85) 0%, transparent 100%),
        radial-gradient(2px   2px   at 93%  44%, rgba(255,255,255,0.60) 0%, transparent 100%),
        radial-gradient(2px   2px   at 32%  88%, rgba(135,65,255,0.75) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 67%  22%, rgba(255,255,255,0.50) 0%, transparent 100%),
        radial-gradient(3px   3px   at  4%  85%, rgba(135,65,255,0.70) 0%, transparent 100%);
    animation: outro-sparkle 3s ease-in-out infinite alternate;
}

@keyframes outro-sparkle {
    0%   { opacity: 0.06; }
    100% { opacity: 0.65; }
}

.vv-outro-title {
    font-family: var(--font-heading);
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 800;
    color: var(--color-text-primary);
    letter-spacing: -0.5px;
    margin-bottom: 14px;
}

.vv-outro-sub {
    font-size: 15px;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.vv-outro-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* ================================================================
   PUBLIC FOOTER
================================================================ */
.vv-footer {
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    padding-top: 60px;
}

.vv-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.vv-footer-brand-logo {
    height: 28px;
    margin-bottom: 12px;
    display: block;
}

.vv-footer-brand-name {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 800;
    color: var(--color-text-primary);
    margin-bottom: 10px;
}

.vv-footer-tagline {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.7;
    max-width: 240px;
}

.vv-footer-col-title {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
}

.vv-footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vv-footer-link {
    font-size: 13px;
    color: var(--color-text-secondary);
    transition: color var(--transition);
}

.vv-footer-link:hover {
    color: var(--color-text-primary);
}

.vv-footer-bottom {
    border-top: 1px solid var(--color-border);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.vv-footer-copy {
    font-size: 12px;
    color: var(--color-text-muted);
}

/* ================================================================
   NEWORDER.TWIG
================================================================ */
.vv-order-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.vv-order-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.vv-order-form-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    overflow: hidden;
}

.vv-order-form-header {
    padding: 18px 22px;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text-primary);
}

.vv-order-form-header i {
    color: var(--color-primary);
    font-size: 16px;
}

.vv-order-form-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Service description hidden by default */
#service_description {
    display: none;
}

#service_description.visible {
    display: block;
}

/* Charge display */
#charge {
    font-weight: 700;
    color: var(--color-primary);
    background: var(--color-primary-dim);
    border-color: transparent;
    cursor: default;
}

/* Order success/error blocks */
.xn-error { margin-bottom: 12px; }

/* Search dropdown */
#new-order-search {
    position: relative;
}

#template-input {
    padding-left: 40px;
}

/* ================================================================
   SERVICES.TWIG
================================================================ */
.vv-services-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.vv-category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.vv-cat-tab {
    padding: 7px 14px;
    border-radius: var(--radius-btn);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    color: var(--color-text-secondary);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.vv-cat-tab:hover,
.vv-cat-tab.active {
    background: var(--color-primary-dim);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.vv-services-search {
    position: relative;
    max-width: 280px;
    flex: 1;
}

.vv-services-search input {
    padding-left: 38px;
}

.vv-services-search i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-muted);
    font-size: 14px;
    pointer-events: none;
}

/* ================================================================
   TICKETS.TWIG
================================================================ */
.vv-ticket-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--color-border-subtle);
    transition: background var(--transition);
}

.vv-ticket-item:last-child {
    border-bottom: none;
}

.vv-ticket-item:hover {
    background: rgba(135, 65, 255, 0.03);
}

.vv-ticket-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-text-muted);
    flex-shrink: 0;
}

.vv-ticket-dot.unread {
    background: var(--color-primary);
    box-shadow: 0 0 6px var(--color-primary-glow);
}

.vv-ticket-name {
    flex: 1;
    font-size: 14px;
    color: var(--color-text-primary);
    font-weight: 500;
}

.vv-ticket-name.unread {
    font-weight: 700;
}

.vv-ticket-time {
    font-size: 11px;
    color: var(--color-text-muted);
    white-space: nowrap;
}

/* File uploader */
.tickets-uploader {
    border: 1px dashed var(--color-border);
    border-radius: var(--radius-input);
    padding: 20px;
    text-align: center;
    color: var(--color-text-muted);
    font-size: 13px;
    transition: border-color var(--transition);
    cursor: pointer;
    min-height: 60px;
}

.tickets-uploader:hover {
    border-color: var(--color-primary);
}

/* ================================================================
   VIEWTICKET.TWIG — Chat-style messages
================================================================ */
.vv-messages {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px 0;
}

.vv-message {
    display: flex;
    gap: 12px;
    max-width: 75%;
}

.vv-message.user-msg {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.vv-message.support-msg {
    align-self: flex-start;
}

.vv-msg-avatar {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--color-primary-dim);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--color-primary);
}

.vv-msg-bubble {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    padding: 12px 16px;
    font-size: 14px;
    color: var(--color-text-primary);
    line-height: 1.6;
    word-break: break-word;
}

.vv-message.user-msg .vv-msg-bubble {
    background: var(--color-primary-dim);
    border-color: var(--color-primary);
}

.vv-msg-time {
    font-size: 11px;
    color: var(--color-text-muted);
    margin-top: 4px;
    display: block;
}

.vv-msg-files {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.vv-msg-file-link {
    font-size: 12px;
    color: var(--color-primary);
    background: var(--color-primary-dim);
    border-radius: 6px;
    padding: 3px 8px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* ================================================================
   ACCOUNT.TWIG
================================================================ */
.vv-account-tabs {
    display: flex;
    gap: 4px;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 24px;
}

.vv-account-tab {
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-secondary);
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.vv-account-tab:hover { color: var(--color-text-primary); }

.vv-account-tab.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.vv-info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border-subtle);
    font-size: 14px;
}

.vv-info-row:last-child { border-bottom: none; }

.vv-info-label {
    color: var(--color-text-secondary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.vv-info-value {
    color: var(--color-text-primary);
    font-weight: 500;
}

/* API key */
#api_key {
    font-family: 'Courier New', monospace;
    font-size: 12px;
    letter-spacing: 0.5px;
    background: var(--color-bg);
}

/* ================================================================
   ADDFUNDS.TWIG
================================================================ */
.vv-payment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

/* ================================================================
   AFFILIATES.TWIG
================================================================ */
.vv-ref-link-box {
    display: flex;
    gap: 8px;
    align-items: center;
}

.vv-ref-link-box input {
    flex: 1;
    font-size: 12px;
    background: var(--color-bg);
}

/* ================================================================
   API.TWIG
================================================================ */
pre {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-input);
    padding: 18px;
    font-size: 13px;
    line-height: 1.6;
    color: var(--color-text-primary);
    overflow-x: auto;
    white-space: pre-wrap;
    word-break: break-word;
}

code {
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: var(--color-primary);
    background: var(--color-primary-dim);
    border-radius: 4px;
    padding: 1px 6px;
}

/* JSON syntax highlight helpers */
.value   { color: var(--color-warning); }
.property{ color: var(--color-info); }
.string  { color: var(--color-success); }
.number  { color: var(--color-text-primary); }

/* ================================================================
   BLOG.TWIG / BLOGPOST.TWIG
================================================================ */
.vv-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.vv-blog-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all var(--transition);
}

.vv-blog-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(135, 65, 255, 0.1);
}

.vv-blog-thumb {
    height: 200px;
    overflow: hidden;
    background: var(--color-bg);
}

.vv-blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 300ms ease;
}

.vv-blog-card:hover .vv-blog-thumb img {
    transform: scale(1.05);
}

.vv-blog-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vv-blog-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text-primary);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vv-blog-excerpt {
    font-size: 13px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vv-blog-card .btn-vv-primary {
    margin-top: auto;
    align-self: flex-start;
    font-size: 11px;
    padding: 8px 18px;
}

/* ── Blog Resources (landing page teaser) ───────────────────────── */
.vv-landing-blog-section {
    padding: 80px 0;
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}
.vv-landing-blog-section::before {
    content: "";
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 700px; height: 320px;
    background: radial-gradient(ellipse at top center, rgba(135,65,255,0.07) 0%, transparent 68%);
    pointer-events: none;
}
.vv-landing-blog-section .section-in { position: relative; z-index: 1; }

.vv-landing-blog-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all var(--transition);
    position: relative;
}
.vv-landing-blog-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--card-accent, var(--color-primary));
    opacity: 0.85;
}
.vv-landing-blog-card:hover {
    border-color: var(--color-primary-glow);
    border-color: color-mix(in srgb, var(--card-accent, var(--color-primary)) 55%, transparent);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(135,65,255,0.1);
}
.vv-landing-blog-card .vv-who-cta {
    margin-top: auto;
}
.vv-landing-blog-body {
    padding: 22px 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.vv-landing-blog-cat {
    font-size: 11px;
    font-weight: 600;
    color: var(--card-accent, var(--color-primary));
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.vv-landing-blog-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: var(--color-text-muted);
}
.vv-landing-blog-meta span + span::before {
    content: "·";
    margin-right: 8px;
}
.vv-landing-blog-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 40px;
}

/* Blog post */
.vv-post-image {
    width: 100%;
    border-radius: var(--radius-card);
    margin-bottom: 28px;
    max-height: 420px;
    object-fit: cover;
}

.vv-post-title {
    font-family: var(--font-heading);
    font-size: clamp(22px, 4vw, 36px);
    font-weight: 800;
    color: var(--color-text-primary);
    letter-spacing: -0.5px;
    margin-bottom: 24px;
    line-height: 1.2;
}

.vv-post-content {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.vv-post-content h1, .vv-post-content h2, .vv-post-content h3 {
    color: var(--color-text-primary);
    margin-top: 28px;
    margin-bottom: 12px;
}

.vv-post-content a {
    color: var(--color-primary);
    text-decoration: underline;
}

/* ================================================================
   AUTH PAGES — Signup / Reset / 2FA
================================================================ */
.vv-auth-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: var(--color-bg);
}

.vv-auth-card {
    width: 100%;
    max-width: 420px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    padding: 40px;
}

.vv-auth-logo {
    display: block;
    margin-bottom: 28px;
    height: 32px;
}

.vv-auth-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--color-text-primary);
    margin-bottom: 6px;
}

.vv-auth-sub {
    font-size: 13px;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
}

.vv-auth-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.vv-auth-form .btn-vv-primary,
.vv-auth-form .btn-primary {
    width: 100%;
    padding: 13px;
}

.vv-auth-footer {
    margin-top: 20px;
    text-align: center;
    font-size: 13px;
    color: var(--color-text-secondary);
}

.vv-auth-footer a {
    color: var(--color-primary);
    font-weight: 600;
}

/* Standalone pages (hide navbar/footer) */
.vv-standalone .public-navbar,
.vv-standalone footer,
.vv-standalone .vv-footer {
    display: none;
}

/* ================================================================
   PUBLIC PAGE WRAPPER (services, blog, api visible to logged out)
================================================================ */
.vv-public-page {
    min-height: 60vh;
}

.vv-public-hero {
    background: linear-gradient(180deg, rgba(135,65,255,0.06) 0%, transparent 100%);
    border-bottom: 1px solid var(--color-border);
    padding: 60px 0 48px;
}

.vv-public-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 800;
    color: var(--color-text-primary);
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

.vv-public-hero-sub {
    font-size: 14px;
    color: var(--color-text-secondary);
}

/* ================================================================
   SEARCH / FILTER BARS
================================================================ */
.vv-search-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.vv-search-input-wrap {
    position: relative;
    flex: 1;
    max-width: 360px;
    min-width: 200px;
}

.vv-search-input-wrap i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-muted);
    font-size: 14px;
    pointer-events: none;
}

.vv-search-input-wrap input {
    padding-left: 38px;
}

.vv-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.vv-filter-tab {
    padding: 6px 14px;
    border-radius: var(--radius-btn);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    color: var(--color-text-secondary);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vv-filter-tab:hover,
.vv-filter-tab.active {
    background: var(--color-primary-dim);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* ================================================================
   RTL SUPPORT
================================================================ */
.rtl-form, .rtl-content, .rtl-nav, .rtl-navbar, .rtl-pagination {
    direction: rtl;
    text-align: right;
}

.rtl-table { direction: rtl; }
.rtl-alert { direction: rtl; text-align: right; }
.rtl-modal { direction: rtl; }

/* ================================================================
   AOS ANIMATIONS (scroll reveal)
================================================================ */
/* Only hide [data-aos] elements once AOS has initialised (adds .aos-initialized to <body>).
   Without this guard, a failed AOS load leaves every animated section invisible. */
body.aos-initialized [data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

body.aos-initialized [data-aos="fade-up"] {
    transform: translateY(24px);
}

body.aos-initialized [data-aos].aos-animate {
    opacity: 1;
    transform: none;
}

/* ================================================================
   MISC UTILITIES
================================================================ */
.vv-divider {
    height: 1px;
    background: var(--color-border);
    margin: 24px 0;
}

.text-primary-vv { color: var(--color-primary); }
.text-muted-vv   { color: var(--color-text-muted); }
.text-secondary-vv { color: var(--color-text-secondary); }
.text-success-vv { color: var(--color-success); }
.text-danger-vv  { color: var(--color-danger); }
.text-warning-vv { color: var(--color-warning); }

.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.w-100 { width: 100%; }

/* ================================================================
   RESPONSIVE — Tablet (≤ 1024px)
================================================================ */
@media (max-width: 1024px) {
    .vv-hero-inner {
        grid-template-columns: 1fr;
        padding-top: 80px;
        text-align: center;
    }

    .vv-hero-sub { margin-left: auto; margin-right: auto; }

    .vv-hero-eyebrow {
        justify-content: center;
    }

    .vv-hero-cta {
        justify-content: center;
    }

    .vv-stats-ticker {
        justify-content: center;
    }

    .vv-login-card {
        max-width: 480px;
        margin: 0 auto;
    }

    .vv-forgot-desktop { display: none; }

    .vv-forgot-mobile {
        display: flex;
        justify-content: center;
        font-size: 12px;
        margin-top: 2px;
    }

    .vv-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vv-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vv-faq-section {
        grid-template-columns: 1fr;
    }

    .vv-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .vv-order-layout {
        grid-template-columns: 1fr;
    }

    .vv-payment-grid {
        grid-template-columns: 1fr;
    }

    .vv-whatis-stats {
        flex-wrap: wrap;
        gap: 12px 0;
    }

    .vv-catalog-bento {
        grid-template-areas:
            "followers followers"
            "likes     views"
            "comments  shares"
            "traffic   traffic";
        grid-template-columns: repeat(2, 1fr);
    }

    .vv-popular-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vv-results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ================================================================
   RESPONSIVE — Mobile (≤ 768px)
================================================================ */
@media (max-width: 768px) {
    .section-in, .navbar-in, .header-in, .footer-in {
        padding-left: 20px;
        padding-right: 20px;
    }

    .navbar-links-vv { display: none; }
    .nav-hamburger   { display: flex; }

    /* Hide CTA buttons on mobile — they live in the mobile overlay */
    .navbar-right-vv .btn-vv-ghost,
    .navbar-right-vv .btn-vv-primary { display: none; }

    /* Fix navbar to viewport top — sticky is unreliable on iOS overscroll */
    .public-navbar {
        position: fixed;
        left: 0;
        right: 0;
    }

    /* Compensate for fixed navbar removed from document flow */
    body:not(.dashboard) {
        padding-top: 72px;
    }

    /* Dashboard sidebar becomes off-canvas on mobile */
    body.dashboard { flex-direction: column; overflow: auto; }

    .vv-sidebar {
        transform: translateX(-100%);
        transition: transform var(--transition);
    }

    .vv-sidebar.open {
        transform: translateX(0);
    }

    /* Collapse sidebar behind Bootstrap modal backdrop to prevent double-darkening */
    body.modal-open .vv-sidebar {
        z-index: 0;
    }

    .dashboard-body {
        margin-left: 0;
        height: auto;
        overflow: visible;
    }

    .dashboard-top-nav {
        padding: 0 16px;
    }

    .dashboard-body-in {
        height: auto;
        overflow: visible;
        padding: 16px;
    }

    /* Larger touch targets for sidebar links (44px HIG minimum) */
    .sidebar-link {
        padding: 12px 12px;
    }

    .vv-features-grid {
        grid-template-columns: 1fr;
    }

    .vv-blog-grid {
        grid-template-columns: 1fr;
    }

    .vv-results-grid {
        grid-template-columns: 1fr;
    }

    .vv-footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .vv-outro {
        padding: 36px 24px;
    }

    .vv-card { padding: 18px; }

    .vv-order-stats {
        grid-template-columns: 1fr;
    }

    .table > thead { display: none; }

    .table > tbody > tr {
        display: block;
        margin-bottom: 12px;
        background: var(--color-surface);
        border: 1px solid var(--color-border);
        border-radius: var(--radius-card);
    }

    .table > tbody > tr > td {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 14px;
        border-bottom: 1px solid var(--color-border-subtle);
    }

    .table > tbody > tr > td:last-child {
        border-bottom: none;
    }

    .table > tbody > tr > td::before {
        content: attr(data-label);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: var(--color-text-muted);
        flex-shrink: 0;
        margin-right: 12px;
    }

    .vv-hero-inner {
        padding: 80px 20px 48px;
    }

    .vv-auth-card {
        padding: 28px 20px;
    }

    .modal-dialog {
        margin: 12px;
    }
}

/* ================================================================
   RESPONSIVE — Small mobile (≤ 480px)
================================================================ */
@media (max-width: 480px) {
    .vv-login-meta { font-size: 11px; }

    .vv-stat-pill-divider { display: none; }

    .vv-filter-tabs { flex-direction: column; }

    .vv-category-tabs { flex-direction: column; align-items: flex-start; }

    .pagination > li > a,
    .pagination > li > span {
        min-width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .topnav-page-title { display: none; }
}

/* ================================================================
   BOOTSTRAP 3 OVERRIDES — structural fixes
================================================================ */

/* Remove default BS3 chrome */
.navbar { background: none; border: none; margin: 0; border-radius: 0; }
.navbar-default { background: none; border: none; }
.container-fluid { padding: 0; }

/* Panel → card-like */
.panel {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    box-shadow: none;
}

.panel-heading {
    background: transparent;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text-primary);
    font-weight: 700;
    border-radius: var(--radius-card) var(--radius-card) 0 0;
}

.panel-body {
    color: var(--color-text-secondary);
}

/* Well */
.well {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    box-shadow: none;
    color: var(--color-text-secondary);
}

/* input-group */
.input-group-addon {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    color: var(--color-text-secondary);
    border-radius: var(--radius-input) 0 0 var(--radius-input);
}

/* Hidden helper */
.hidden { display: none !important; }

/* ══════════════════════════════════════════════════════════════════
   signin.twig: Who It's For cards
   ══════════════════════════════════════════════════════════════════ */
/* ── Who It's For overhaul ────────────────────────── */
.vv-who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.vv-who-card {
    position: relative;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    padding: 36px 32px 28px;
    overflow: hidden;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
    cursor: default;
    display: flex;
    flex-direction: column;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.vv-who-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(135,65,255,0.1), inset 0 1px 0 rgba(135,65,255,0.15);
    border-color: var(--color-primary);
}
/* Top accent bar — scales in on hover */
.vv-who-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--color-primary);
    transform: scaleX(0);
    transition: transform 300ms ease;
    z-index: 1;
}
.vv-who-card:hover::before { transform: scaleX(1); }
/* Diagonal shimmer — fires once on hover */
.vv-who-card::after {
    content: "";
    position: absolute;
    top: 0; left: -80%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(135,65,255,0.06), transparent);
    transform: skewX(-20deg);
    pointer-events: none;
}
.vv-who-card:hover::after {
    animation: feat-shimmer 0.65s ease forwards;
}
/* Role tag pill */
.vv-who-role-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--color-primary);
    background: var(--color-primary-dim);
    padding: 4px 10px;
    border-radius: 100px;
    margin-bottom: 20px;
    width: fit-content;
}
/* Icon + title inline header */
.vv-who-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}
/* Icon */
.vv-who-icon-wrap {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
}
.vv-who-icon-wrap i {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-dim);
    border-radius: 12px;
    font-size: 20px;
    color: var(--color-primary);
    transition: background 200ms ease, box-shadow 200ms ease;
}
.vv-who-card:hover .vv-who-icon-wrap i {
    box-shadow: 0 0 14px rgba(135,65,255,0.22);
    background: rgba(135,65,255,0.14);
}
/* Title */
.vv-who-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0;
    line-height: 1.35;
}
/* Body */
.vv-who-card-body {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.75;
    margin: 0 0 20px;
    flex: 1;
}
/* Platform tags — static */
.vv-who-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 18px;
}
.vv-who-tags span {
    font-size: 11px;
    font-weight: 500;
    color: var(--color-text-muted);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 100px;
    padding: 3px 10px;
}
/* CTA — always visible, brightens on hover */
.vv-who-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 180ms ease;
}
.vv-who-card:hover .vv-who-cta { opacity: 1; }
/* Responsive */
@media (max-width: 768px) {
    .vv-who-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════════
   signin.twig: How-it-works steps
   ══════════════════════════════════════════════════════════════════ */
/* How-it-works steps */
.vv-steps-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.vv-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px 12px;
    margin: 0 -12px;
    border-radius: 10px;
    position: relative;
    transition: background 180ms ease;
}

.vv-step:hover {
    background: var(--color-primary-dim);
}

.vv-step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--color-primary);
    background: var(--color-primary-dim);
    border: 1px solid var(--color-primary-glow);
    box-shadow: 0 0 14px rgba(135,65,255,0.25);
    flex-shrink: 0;
    margin-top: 0;
    transition: box-shadow 180ms ease;
}

.vv-step:hover .vv-step-num {
    box-shadow: 0 0 24px rgba(135,65,255,0.55);
}

.vv-step:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 30px;
    top: 60px;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, rgba(135,65,255,0.35), transparent);
    pointer-events: none;
    transform-origin: top center;
    transform: scaleY(0);
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.vv-steps-animated .vv-step:not(:last-child)::after {
    transform: scaleY(1);
}

/* Step num pop-in animation */
@keyframes vv-step-num-pop {
    0%   { transform: scale(0.4); opacity: 0; box-shadow: 0 0 0 rgba(135,65,255,0); }
    60%  { transform: scale(1.18); box-shadow: 0 0 28px rgba(135,65,255,0.7); }
    100% { transform: scale(1); opacity: 1; box-shadow: 0 0 14px rgba(135,65,255,0.25); }
}

.vv-steps-animated .vv-step:nth-child(1) .vv-step-num {
    animation: vv-step-num-pop 0.5s ease forwards;
    animation-delay: 0.1s;
    opacity: 0;
}
.vv-steps-animated .vv-step:nth-child(2) .vv-step-num {
    animation: vv-step-num-pop 0.5s ease forwards;
    animation-delay: 0.35s;
    opacity: 0;
}
.vv-steps-animated .vv-step:nth-child(3) .vv-step-num {
    animation: vv-step-num-pop 0.5s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

.vv-step-body {
    flex: 1;
    min-width: 0;
}

.vv-step-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 6px;
    transition: transform 180ms ease;
}

.vv-step:hover .vv-step-title {
    transform: translateX(4px);
}

.vv-step-icon {
    font-size: 14px;
    color: var(--color-text-muted);
    flex-shrink: 0;
    align-self: center;
    transition: color 180ms ease;
}

.vv-step:hover .vv-step-icon {
    color: var(--color-primary);
}

.vv-step-desc {
    font-size: 13px;
    color: var(--color-text-readable);
    line-height: 1.7;
}

/* How-it-works responsive */
@media (max-width: 768px) {
    .vv-hero-inner {
        grid-template-columns: 1fr;
        padding-top: 80px;
    }

    .vv-login-card {
        order: -1;
    }

    .vv-how-grid {
        display: block !important;
    }

    .vv-how-grid .vv-steps-list {
        margin-top: 40px;
    }

    .vv-faq-section {
        grid-template-columns: 1fr;
    }

    .vv-faq-section > div:first-child {
        position: static;
    }

    .vv-outro {
        padding: 40px 28px;
    }

    .vv-catalog-bento {
        grid-template-areas:
            "followers"
            "likes"
            "views"
            "comments"
            "shares"
            "traffic";
        grid-template-columns: 1fr;
    }

    .vv-bento-ghost-num { font-size: 90px; }

    .vv-popular-grid {
        grid-template-columns: 1fr;
    }

    .vv-popular-footer {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    /* Animation performance budget — hero area */
    .vv-login-card::before { animation-play-state: paused; }
    .vv-hero-beam          { animation: none; display: none; }
    .vv-orb-2, .vv-orb-5  { display: none; }
}

@media (max-width: 480px) {
    .vv-steps-list {
        gap: 0;
    }

    .vv-step {
        gap: 14px;
        padding: 20px 12px;
    }
}

/* ══════════════════════════════════════════════════════════════════
   signin.twig: Section backgrounds + FAQ trigger styles + Outro
   ══════════════════════════════════════════════════════════════════ */
/* ── Features Grid: dot matrix + top violet radial glow ─────────── */
.vv-features-section {
    position: relative;
    overflow: hidden;
    background-color: var(--color-bg);
    background-image: radial-gradient(circle, rgba(135,65,255,0.14) 1px, transparent 1px);
    background-size: 32px 32px;
}
.vv-features-section::before {
    content: "";
    position: absolute;
    top: -60px; left: 50%;
    transform: translateX(-50%);
    width: 900px; height: 480px;
    background: radial-gradient(ellipse at center,
        rgba(135,65,255,0.16) 0%,
        rgba(135,65,255,0.06) 40%,
        transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.vv-features-section .section-in { position: relative; z-index: 1; }

/* ── How It Works: diagonal dark gradient + stripe lines + left glow ── */
.vv-how-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(155deg, #101020 0%, var(--color-bg) 45%, #0c0c15 100%);
}
.vv-how-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: repeating-linear-gradient(
        -52deg,
        transparent 0px,
        transparent 36px,
        rgba(135,65,255,0.025) 36px,
        rgba(135,65,255,0.025) 37px
    );
    pointer-events: none;
}
.vv-how-section::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 45%; height: 100%;
    background: radial-gradient(ellipse 80% 70% at 0% 45%,
        rgba(135,65,255,0.09) 0%, transparent 70%);
    pointer-events: none;
}
.vv-how-section .section-in { position: relative; z-index: 1; }

/* ── Who It's For: dot-grid bg + top violet flood + hairline borders ── */
.vv-who-section {
    position: relative;
    overflow: hidden;
    background-color: var(--color-bg);
    background-image: radial-gradient(circle, rgba(135,65,255,0.065) 1px, transparent 1px);
    background-size: 28px 28px;
}
/* Top-center violet flood light — gives the section warmth without noise */
.vv-who-section::before {
    content: "";
    position: absolute;
    top: -60px; left: 50%;
    transform: translateX(-50%);
    width: 900px; height: 480px;
    background: radial-gradient(ellipse at 50% 0%,
        rgba(135,65,255,0.13) 0%, transparent 68%);
    pointer-events: none;
    z-index: 0;
}
/* Top + bottom hairline dividers to bookend the section cleanly */
.vv-who-section::after {
    content: "";
    position: absolute;
    inset: 0;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(90deg,
        transparent 0%, rgba(135,65,255,0.45) 50%, transparent 100%) 1;
    pointer-events: none;
    z-index: 0;
}
.vv-who-section .section-in { position: relative; z-index: 1; }

/* ── FAQ: dot grid + breathing orb + seamless section blend ─────── */
.vv-faq-section-wrap {
    position: relative;
    overflow: hidden;
    background-color: var(--color-bg);
    background-image: radial-gradient(circle, rgba(135,65,255,0.09) 1px, transparent 1px);
    background-size: 28px 28px;
}
/* Bottom edge: dissolve into --color-bg so the outro can set its own tone */
.vv-faq-section-wrap::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--color-bg));
    pointer-events: none;
    z-index: 2;
}
.vv-faq-section-wrap .section-in { position: relative; z-index: 1; }

/* Breathing ambient orb */
.vv-faq-bg-orb {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: 720px; height: 420px;
    background: radial-gradient(ellipse, rgba(135,65,255,0.11) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
    animation: faq-orb-breathe 9s ease-in-out infinite;
    will-change: transform, opacity;
}
@keyframes faq-orb-breathe {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50%       { opacity: 1;   transform: translate(-50%, -50%) scale(1.18); }
}

/* ── FAQ trigger: numbered question layout ─────────────────────── */
.vv-faq-num {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--color-text-muted);
    min-width: 20px;
    font-variant-numeric: tabular-nums;
    flex-shrink: 0;
    transition: color 180ms ease;
}
.vv-faq-item.open .vv-faq-num {
    color: var(--color-primary);
}
.vv-faq-q { flex: 1; }

/* Chevron: spin 180deg when open, not 45deg (override style.css) */
.vv-faq-item.open .vv-faq-trigger i { transform: rotate(180deg); }

/* Open item: violet fill tint + outer glow ring */
.vv-faq-item.open {
    background: rgba(135,65,255,0.055);
    box-shadow: 0 0 0 1px rgba(135,65,255,0.3), 0 6px 28px rgba(135,65,255,0.08);
}

/* Answer body: left accent bar instead of top border, aligned under question text */
.vv-faq-answer-inner {
    border-top: none;
    border-left: 2px solid rgba(135,65,255,0.45);
    margin-left: 34px;
    padding-top: 12px;
}

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .vv-faq-answer-inner { margin-left: 0; }
}

/* ── CTA Outro ─────────────────────────────────────────────────── */
.vv-outro-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    /* Elevated surface base with a floodlight cone from above + corner blooms */
    background:
        radial-gradient(ellipse 90% 55% at 50% -5%,  rgba(135,65,255,0.28) 0%, transparent 65%),
        radial-gradient(ellipse 45% 35% at 2%  110%,  rgba(135,65,255,0.14) 0%, transparent 55%),
        radial-gradient(ellipse 45% 35% at 98% 110%,  rgba(135,65,255,0.14) 0%, transparent 55%),
        linear-gradient(170deg, #131220 0%, var(--color-surface) 35%, #0e0e1b 100%);
}
/* Vivid glowing top-edge beam */
.vv-outro-section::before {
    content: "";
    position: absolute;
    top: 0; left: 8%; right: 8%;
    height: 2px;
    background: linear-gradient(90deg,
        transparent,
        rgba(135,65,255,0.55) 20%,
        rgba(200,150,255,1)   50%,
        rgba(135,65,255,0.55) 80%,
        transparent);
    box-shadow: 0 0 24px rgba(135,65,255,0.45), 0 0 80px rgba(135,65,255,0.18);
    pointer-events: none;
}
/* Soft bottom fade back to --color-bg */
.vv-outro-section::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 90px;
    background: linear-gradient(to bottom, transparent, var(--color-bg));
    pointer-events: none;
}
.vv-outro-section .section-in { position: relative; z-index: 1; }

/* Orbital pulse rings */
.vv-outro-rings {
    position: absolute;
    inset: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.vv-outro-ring {
    position: absolute;
    border-radius: 50%;
    animation: vv-outro-ring-expand 4.5s ease-out infinite;
}
.vv-outro-ring-1 {
    width: 260px; height: 260px;
    border: 1px solid rgba(135,65,255,0.35);
    animation-delay: 0s;
}
.vv-outro-ring-2 {
    width: 480px; height: 480px;
    border: 1px solid rgba(135,65,255,0.2);
    animation-delay: 1.5s;
}
.vv-outro-ring-3 {
    width: 720px; height: 720px;
    border: 1px solid rgba(135,65,255,0.1);
    animation-delay: 3s;
}
@keyframes vv-outro-ring-expand {
    0%   { transform: scale(0.55); opacity: 1; }
    100% { transform: scale(1.45); opacity: 0; }
}

/* Inner content wrapper (sits above sparkle layer) */
.vv-outro-inner {
    position: relative;
    z-index: 1;
}

/* Live badge */
.vv-outro-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(135,65,255,0.1);
    border: 1px solid rgba(135,65,255,0.3);
    border-radius: 100px;
    padding: 5px 14px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 28px;
}
.vv-outro-live-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 0 6px var(--color-primary);
    flex-shrink: 0;
    animation: vv-outro-dot-pulse 1.8s ease-in-out infinite;
}
@keyframes vv-outro-dot-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 6px var(--color-primary); }
    50%       { opacity: 0.55; box-shadow: 0 0 14px rgba(135,65,255,0.9); }
}

/* Stats strip */
.vv-outro-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-bottom: 32px;
}
.vv-outro-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.vv-outro-stat-num {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 800;
    color: var(--color-text-primary);
    line-height: 1;
    letter-spacing: -0.5px;
}
.vv-outro-stat-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}
.vv-outro-stat-div {
    width: 1px;
    height: 38px;
    background: var(--color-border);
    flex-shrink: 0;
}

/* Gradient text in outro title */
.vv-outro-title em,
.vv-outro-title .vv-gradient-text {
    font-style: italic;
    background: linear-gradient(90deg, #a855f7 0%, #8741ff 50%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Shimmer sweep on primary CTA */
.vv-outro-primary-btn {
    position: relative;
    overflow: hidden;
}
.vv-outro-btn-shimmer {
    position: absolute;
    top: 0; left: -100%;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
    transform: skewX(-18deg);
    pointer-events: none;
}
.vv-outro-primary-btn:hover .vv-outro-btn-shimmer {
    left: 160%;
    transition: left 0.55s ease;
}

/* Outro responsive */
@media (max-width: 600px) {
    .vv-outro-stats { gap: 16px; }
    .vv-outro-stat-num { font-size: 22px; }
    .vv-outro-stat-div { height: 28px; }
    .vv-outro-ring-3 { display: none; }
}

/* ── Visually-hidden utility (accessible text for screen readers) ── */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

/* ══════════════════════════════════════════════════════════════════
   Accessibility: prefers-reduced-motion
   Pause all infinite looping animations for users who have requested
   reduced motion at the OS level (also covers iOS/Android low-power mode).
   AOS scroll-reveal elements are made immediately visible rather than
   staying hidden — content is accessible, just without the motion effect.
   ══════════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    /* Disable decorative infinite/looping animations */
    .vv-login-card::before,
    .vv-orb-1, .vv-orb-2, .vv-orb-3, .vv-orb-5,
    .vv-hero-beam,
    .vv-section-eyebrow::before,
    .vv-hero-eyebrow::before,
    .vv-marquee-track,
    .vv-beam-sweep,
    .faq-orb,
    .vv-bento-bar {
        animation: none !important;
        transition: none !important;
    }

    /* AOS: show content immediately — never leave it at opacity 0 */
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }

    /* Release compositor layers when animations are disabled */
    .vv-orb-1, .vv-orb-5,
    .vv-marquee-track {
        will-change: auto;
    }
    /* Marquee: scrollable fallback instead of animated */
    .vv-marquee-track {
        transform: none;
        overflow-x: auto;
    }
}