/* ============================================================
   MAIN STYLESHEET — SMM SPOT
   ============================================================ */

/* ── Reset & Base ── */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--navbar-height);
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea { font-family: inherit; }

/* ── Custom Scrollbar ── */

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb {
    background: var(--gradient);
    border-radius: var(--r-full);
}
::-webkit-scrollbar-thumb:hover { background: var(--primary-light); }

::selection { background: rgba(79, 70, 229, 0.35); color: #fff; }

/* ── Page Loader ── */

/* ══════════════════════════════════════
   PAGE LOADER — Animated logo version
══════════════════════════════════════ */

#page-loader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-modal);
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

/* Spinning ring */
.loader-ring-wrap {
    position: relative;
    width: 94px;
    height: 94px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-ring-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(79,70,229,0.1);
}

.loader-spinner-a {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #4f46e5;
    border-right-color: #818cf8;
    animation: loaderSpin 1.1s linear infinite;
}

.loader-spinner-b {
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-bottom-color: #0ea5e9;
    border-left-color: #38bdf8;
    animation: loaderSpin 0.85s linear infinite reverse;
}

/* Glow halo */
.loader-ring-wrap::after {
    content: '';
    position: absolute;
    inset: -18px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79,70,229,0.18) 0%, transparent 70%);
    animation: loaderGlow 2s ease-in-out infinite;
}

@keyframes loaderSpin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes loaderGlow {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50%       { opacity: 1;   transform: scale(1.08); }
}

/* Favicon image inside ring */
.loader-icon-img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 14px;
    position: relative;
    z-index: 1;
    animation: loaderIconPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 12px rgba(79,70,229,0.7));
}

@keyframes loaderIconPulse {
    0%, 100% { transform: scale(1);    opacity: 1; }
    50%       { transform: scale(0.95); opacity: 0.85; }
}

/* Progress bar + dots — hidden globally */
.loader-bar,
.loader-bar-fill,
.loader-dots { display: none; }

/* ── Cursor Glow ── */

.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79,70,229,0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: var(--z-below);
    transform: translate(-50%, -50%);
    transition: left 0.12s ease, top 0.12s ease;
}

/* ── Utility Classes ── */

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--container-pad);
}

.section { padding: var(--section-padding); position: relative; overflow: hidden; }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--gradient-subtle);
    border: var(--border-primary);
    border-radius: var(--r-full);
    font-size: var(--fs-sm);
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--accent);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(var(--fs-3xl), 4vw, var(--fs-5xl));
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: var(--fs-lg);
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 580px;
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-header .section-subtitle { margin: 0 auto; }

.gradient-text {
    background: linear-gradient(135deg, #a5b4fc 0%, #38bdf8 60%, #818cf8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 300% 300%;
    animation: gradientShift 5s ease infinite;
}

/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: var(--r-full);
    font-family: var(--font-heading);
    font-size: var(--fs-sm);
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: var(--t);
    cursor: pointer;
    white-space: nowrap;
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.12);
    opacity: 0;
    transition: var(--t-fast);
}

.btn:hover::after { opacity: 1; }

.btn-gradient {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.35);
    background-size: 200% auto;
    transition: var(--t), background-position 0.5s ease;
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(79, 70, 229, 0.55);
    background-position: right center;
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: var(--border);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    border-color: rgba(79, 70, 229, 0.5);
    background: rgba(79, 70, 229, 0.08);
    transform: translateY(-3px);
}

.btn-ghost {
    background: var(--card-bg);
    color: var(--text);
    border: var(--border);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: var(--card-bg-hover);
    border-color: rgba(129, 140, 248, 0.4);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 40px;
    font-size: var(--fs-base);
}

/* Badge */

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: var(--r-full);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.badge-primary {
    background: rgba(79, 70, 229, 0.18);
    border: 1px solid rgba(79, 70, 229, 0.35);
    color: #a5b4fc;
}

.badge-success {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #34d399;
}

.badge-cyan {
    background: rgba(14, 165, 233, 0.15);
    border: 1px solid rgba(14, 165, 233, 0.3);
    color: #38bdf8;
}

/* Glass Card */

.glass-card {
    background: var(--card-bg);
    border: var(--border);
    border-radius: var(--r-xl);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-card);
    transition: var(--t);
}

.glass-card:hover {
    border-color: rgba(79, 70, 229, 0.3);
    box-shadow: var(--shadow-card), var(--shadow-glow-sm);
    transform: translateY(-4px);
}

/* ── NAVBAR (Floating Pill) ── */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 12px 20px 0;
    z-index: var(--z-navbar);
    pointer-events: none;
    display: flex;
    justify-content: center;
}

.nav-pill {
    width: 100%;
    max-width: var(--container-max);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px 10px 18px;
    background: rgba(15, 22, 41, 0.55);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: var(--border);
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.06);
    transition: var(--t);
    pointer-events: all;
    gap: 24px;
}

.navbar.scrolled .nav-pill {
    background: rgba(8, 9, 26, 0.90);
    box-shadow: 0 12px 40px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.06);
}

/* old .navbar.scrolled kept for compat — uses .nav-pill now */
.navbar.scrolled {
    background: transparent;
    border-bottom: none;
    box-shadow: none;
    backdrop-filter: none;
}

.navbar.scrolled {
    background: rgba(8, 9, 26, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: var(--border-subtle);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    font-weight: 800;
    color: var(--text);
    flex-shrink: 0;
    transition: var(--t);
}

.nav-logo:hover { opacity: 0.88; transform: scale(1.02); }

.nav-logo-img {
    height: 50px;
    width: auto;
    max-width: 155px;
    object-fit: contain;
    display: block;
    filter: brightness(1.08);
    transition: var(--t);
}

.footer-logo-img {
    height: 50px;
    width: auto;
    max-width: 175px;
    object-fit: contain;
    display: block;
    filter: brightness(1.08);
    margin-bottom: 4px;
}

.logo-icon-wrap {
    width: 30px;
    height: 30px;
    border-radius: var(--r-sm);
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    box-shadow: var(--shadow-glow-sm);
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    padding: 7px 13px;
    border-radius: var(--r-full);
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.25s ease, background 0.25s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: var(--gradient);
    border-radius: var(--r-full);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease;
    opacity: 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text);
    background: rgba(255,255,255,0.07);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: translateX(-50%) scaleX(1);
    opacity: 1;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.nav-icon-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--t-fast);
}

.nav-icon-btn:hover {
    background: rgba(255,255,255,0.1);
    color: var(--text);
}

.nav-divider {
    width: 1px;
    height: 20px;
    background: rgba(255,255,255,0.1);
    margin: 0 4px;
}

.btn-nav-login {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 16px;
    border-radius: var(--r-full);
    font-family: var(--font-heading);
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--text-muted);
    border: none;
    background: transparent;
    cursor: pointer;
    transition: var(--t);
}

.btn-nav-login:hover {
    color: var(--text);
    background: rgba(255,255,255,0.07);
}

.btn-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    border-radius: var(--r-full);
    font-family: var(--font-heading);
    font-size: var(--fs-sm);
    font-weight: 700;
    color: #fff;
    background: var(--gradient);
    background-size: 200% auto;
    border: none;
    cursor: pointer;
    transition: var(--t), background-position 0.5s ease;
    box-shadow: 0 2px 14px rgba(79, 70, 229, 0.38);
    position: relative;
    overflow: hidden;
}

.btn-nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.1);
    opacity: 0;
    transition: var(--t-fast);
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(79, 70, 229, 0.55);
    background-position: right center;
}

.btn-nav-cta:hover::before { opacity: 1; }

/* Hamburger */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 7px;
    border-radius: var(--r-sm);
    cursor: pointer;
    background: rgba(255,255,255,0.05);
    border: none;
    transition: var(--t);
}

.hamburger:hover { background: rgba(255,255,255,0.10); }

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: var(--r-full);
    transition: var(--t);
    transform-origin: center;
}

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

/* ── Mobile Menu — compact dropdown panel ── */

/* Dark overlay behind the panel */
.mobile-menu-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: calc(var(--z-navbar) - 2);
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.mobile-menu-backdrop.open {
    opacity: 1;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 10px;
    right: 10px;
    z-index: calc(var(--z-navbar) - 1);
    background: rgba(10, 12, 28, 0.98);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: none;
    border-radius: 0 0 22px 22px;
    box-shadow: 0 28px 56px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(79,70,229,0.08) inset;
    padding: 0 16px 20px;
    padding-top: calc(var(--navbar-height) + 12px);
    display: flex;
    flex-direction: column;
    gap: 3px;
    transform: translateY(-105%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1),
                opacity 0.3s ease;
    pointer-events: none;
}

.mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

/* Nav links inside mobile menu */
.mobile-menu > a {
    padding: 11px 14px;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
    position: relative;
}

.mobile-menu > a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--gradient);
    border-radius: var(--r-full);
    transition: height 0.2s ease;
}

.mobile-menu > a:hover,
.mobile-menu > a.active {
    color: var(--text);
    background: rgba(79, 70, 229, 0.1);
    padding-left: 20px;
}

.mobile-menu > a:hover::before,
.mobile-menu > a.active::before {
    height: 60%;
}

/* Action buttons row */
.mobile-menu-actions {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    gap: 8px;
}

.mobile-menu-actions .btn-nav-login {
    flex: 1;
    justify-content: center;
    padding: 11px 12px;
    font-size: 13px;
    border-radius: 11px;
}

.mobile-menu-actions .btn-nav-cta {
    flex: 1.3;
    justify-content: center;
    padding: 11px 12px;
    font-size: 13px;
    border-radius: 11px;
}

/* ── HERO ── */

.hero {
    min-height: 100vh;
    padding: calc(var(--navbar-height) + 72px) 0 72px;
    position: relative;
    overflow: hidden;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 56px;
    position: relative;
    z-index: 1;
}

/* Mesh grid */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--gradient-mesh);
    background-size: 28px 28px;
    pointer-events: none;
    opacity: 0.8;
}

/* Hero orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
}

.hero-orb-1 {
    width: 580px;
    height: 580px;
    background: rgba(79, 70, 229, 0.22);
    top: -10%;
    left: -8%;
    animation: morphBlob 14s ease-in-out infinite;
}

.hero-orb-2 {
    width: 500px;
    height: 500px;
    background: rgba(14, 165, 233, 0.15);
    bottom: -10%;
    right: -4%;
    animation: morphBlob 18s ease-in-out infinite reverse;
}

.hero-orb-3 {
    width: 280px;
    height: 280px;
    background: rgba(129, 140, 248, 0.12);
    top: 38%;
    left: 40%;
    animation: morphBlob 11s ease-in-out infinite 2s;
}

.hero-content {
    position: relative;
    z-index: 1;
    min-width: 0;     /* prevent grid blowout */
    overflow: hidden; /* clip anything that escapes */
}
.hero-visual  { position: relative; z-index: 1; min-width: 0; }

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 18px;
    background: rgba(79, 70, 229, 0.12);
    border: 1px solid rgba(129, 140, 248, 0.35);
    border-radius: var(--r-full);
    font-size: var(--fs-sm);
    font-weight: 600;
    color: #c4b5fd;
    margin-bottom: 26px;
    animation: fadeInDown 0.7s ease both;
    box-shadow: 0 0 20px rgba(79,70,229,0.12);
}

.hero-badge i { font-size: 13px; color: #818cf8; }

/* Main heading */
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 4.8vw, 5rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: var(--text);
    margin-bottom: 22px;
    animation: fadeInUp 0.7s ease 0.15s both;
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
}

/* Animated "Cheapest" pill inside heading */
.cheapest-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 14px 5px 5px;
    background: rgba(79,70,229,0.15);
    border: 1px solid rgba(129,140,248,0.3);
    border-radius: var(--r-full);
    font-size: 0.3em;
    font-weight: 800;
    vertical-align: middle;
    margin: 0 6px;
    position: relative;
    overflow: hidden;
    animation: cheapestBadgePulse 2.8s ease-in-out infinite;
    box-shadow: 0 0 18px rgba(79,70,229,0.2);
    letter-spacing: 0.03em;
}

.cheapest-pill::before {
    content: '';
    position: absolute;
    inset: -40% auto -40% -30%;
    width: 35%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
    transform: skewX(-18deg) translateX(-120%);
    animation: cheapestBadgeSweep 3.8s ease-in-out infinite;
}

.cheapest-pill-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 0 14px rgba(79,70,229,0.6);
}

.cheapest-pill-text {
    letter-spacing: 0.03em;
}

.hero-subtitle {
    font-size: clamp(var(--fs-base), 1.5vw, var(--fs-lg));
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 36px;
    animation: fadeInUp 0.7s ease 0.28s both;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
    animation: fadeInUp 0.7s ease 0.42s both;
}

/* ── Hero Social Proof Strip ── */
.hero-proof-strip {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 14px 18px;
    margin-top: 28px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 24px rgba(0,0,0,0.25), 0 0 0 1px rgba(79,70,229,0.08);
    animation: fadeInUp 0.7s ease 0.55s both;
    width: fit-content;
    max-width: 100%;
}

/* Trustpilot badge half */
.proof-tp-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-right: 18px;
}

.proof-tp-icon {
    width: 34px;
    height: 34px;
    background: #00b67a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(0,182,122,0.35);
}

.proof-tp-body {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.proof-tp-row {
    display: flex;
    align-items: center;
    gap: 7px;
}

.proof-tp-brand {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
}

.proof-tp-stars {
    display: flex;
    gap: 2px;
    color: #fbbf24;
    font-size: 11px;
}

.proof-tp-sub {
    font-size: 10px;
    color: var(--text-faint);
    line-height: 1;
}

/* Separator */
.proof-sep {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
    margin: 0 18px;
}

/* Users half */
.proof-users {
    display: flex;
    align-items: center;
    gap: 12px;
}

.proof-avatars {
    display: flex;
    align-items: center;
}

.proof-av {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid rgba(8,9,26,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    margin-right: -8px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.proof-av:last-child { margin-right: 0; }

.proof-av-more {
    background: rgba(79,70,229,0.3);
    border-color: rgba(129,140,248,0.4);
    font-size: 9px;
    letter-spacing: -0.5px;
}

.proof-avatars:hover .proof-av {
    margin-right: -4px;
}

.proof-avatars:hover .proof-av:last-child { margin-right: 0; }

.proof-users-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.proof-users-count {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.proof-users-label {
    font-size: 10px;
    color: var(--text-faint);
    white-space: nowrap;
    line-height: 1;
}

/* ── Hero Visual (right) ── */

.hero-visual {
    /* Extra right padding so floating cards have breathing room */
    padding-right: 48px;
}

.hero-visual-wrap {
    position: relative;
    min-height: 520px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 0.9s ease 0.3s both;
}

/* Central profile card */
.hero-profile-card {
    width: 248px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--r-2xl);
    padding: 24px 18px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    position: relative;
    z-index: 20;
    box-shadow: 0 32px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(79,70,229,0.15),
                inset 0 1px 0 rgba(255,255,255,0.08);
    animation: float 7s ease-in-out infinite;
    transition: box-shadow 0.35s ease, border-color 0.35s ease;
    cursor: default;
}

.hero-profile-card:hover {
    box-shadow: 0 40px 80px rgba(0,0,0,0.65), 0 0 40px rgba(79,70,229,0.25),
                inset 0 1px 0 rgba(255,255,255,0.12);
    border-color: rgba(129,140,248,0.3);
}

.hpc-dots {
    position: absolute;
    top: 12px;
    left: 14px;
    display: flex;
    gap: 5px;
}

.hpc-dot { width: 8px; height: 8px; border-radius: 50%; }
.hpc-dot:nth-child(1) { background: #ff5f57; }
.hpc-dot:nth-child(2) { background: #febc2e; }
.hpc-dot:nth-child(3) { background: #28c840; }

.hpc-avatar-wrap {
    position: relative;
    width: 90px;
    height: 90px;
    margin-top: 8px;
}

.hpc-avatar-glow {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: var(--gradient);
    filter: blur(14px);
    opacity: 0.45;
    animation: glowPulse 3s ease-in-out infinite;
}

.hpc-avatar {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(79,70,229,0.5);
    overflow: hidden;
    background: var(--bg-secondary);
}

.hpc-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.hpc-avatar-badge {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f09433, #e6683c, #bc1888);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    color: #fff;
    border: 2px solid var(--bg-primary);
}

.hpc-name {
    font-family: var(--font-heading);
    font-size: var(--fs-base);
    font-weight: 700;
    color: var(--text);
}

.hpc-live-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 600;
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: var(--r-full);
    padding: 3px 10px;
}

.hpc-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
    animation: pulseDot 1.4s ease-in-out infinite;
}

/* Follow button */
.follow-btn-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 30px;
}

.hero-follow-btn {
    width: 82%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px 20px;
    background: var(--gradient);
    border: none;
    border-radius: var(--r-lg);
    font-family: var(--font-heading);
    font-size: var(--fs-sm);
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    transition: all 220ms ease;
    box-shadow: 0 6px 20px rgba(79,70,229,0.45);
    letter-spacing: 0.01em;
}

.hero-follow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(79,70,229,0.6);
}

.hero-follow-btn.is-tapping {
    transform: scale(0.95);
    box-shadow: 0 0 0 3px rgba(79,70,229,0.3);
}

.hero-follow-btn.is-following {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(129,140,248,0.35);
    box-shadow: 0 0 20px rgba(129,140,248,0.2);
    color: var(--accent);
}

.follow-click-hand {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 24px);
    font-size: 20px;
    opacity: 0;
    pointer-events: none;
    filter: drop-shadow(0 0 8px rgba(79,70,229,0.4));
    animation: followHandTap 5.2s ease-in-out 1s infinite;
}

/* ── Floating engagement cards ── */
.hfc {
    position: absolute;
    background: rgba(14, 18, 40, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.06);
    z-index: 30;
    padding: 12px 14px;
    cursor: default;
    transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1),
                box-shadow 0.28s ease,
                border-color 0.28s ease;
}

.hfc:hover {
    transform: scale(1.06) !important;
    box-shadow: 0 18px 48px rgba(0,0,0,0.6), 0 0 24px rgba(79,70,229,0.25), inset 0 1px 0 rgba(255,255,255,0.1);
    border-color: rgba(129,140,248,0.35);
    animation-play-state: paused;
    z-index: 40;
}

.hfc-views {
    top: 0%;
    right: -10%;
    width: 148px;
    animation: viewsBadgeFloat 3.4s ease-in-out infinite;
}

.hfc-youtube {
    top: 4%;
    left: -12%;
    width: 164px;
    animation: heroCardFloat1 5s ease-in-out infinite;
}

.hfc-followers {
    bottom: 2%;
    right: -2%;
    width: 192px;
    animation: heroCardFloat2 5.5s ease-in-out 0.5s infinite;
}

.hfc-comments {
    bottom: 22%;
    left: -8%;
    width: 162px;
    animation: commentsCardDrift 4.2s ease-in-out infinite;
}

/* Floating card inner styles */
.hfc-header    { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.hfc-label     { font-size: 9px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--text-faint); }
.hfc-value     { font-family: var(--font-heading); font-size: var(--fs-xl); font-weight: 800; color: var(--text); line-height: 1.1; }
.hfc-positive  { display: flex; align-items: center; gap: 3px; font-size: 9px; font-weight: 600; color: #10b981; margin-top: 3px; }
.hfc-icon-wrap { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }

/* YouTube bars */
.yt-bars { display: flex; align-items: flex-end; gap: 3px; height: 46px; margin-top: 8px; }

.yt-bar {
    flex: 1;
    border-radius: 2px 2px 0 0;
    background: rgba(255,255,255,0.1);
    transform-origin: bottom;
    animation: youtubeBarGrow 2.8s ease-in-out infinite;
}

.yt-bar.red { background: #ff0000; box-shadow: 0 0 8px rgba(255,0,0,0.5); }
.yt-bar:nth-child(1) { animation-delay: 0s; }
.yt-bar:nth-child(2) { animation-delay: 0.12s; }
.yt-bar:nth-child(3) { animation-delay: 0.24s; }
.yt-bar:nth-child(4) { animation-delay: 0.36s; }
.yt-bar:nth-child(5) { animation-delay: 0.48s; }

/* Comments inline items */
.hfc-comments-items { display: flex; align-items: center; gap: 8px; font-size: 9px; color: var(--text-faint); margin-top: 6px; }

/* Emoji rail */
.hero-emoji-rail {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(14, 18, 40, 0.75);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: var(--r-full);
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 10;
    animation: emojiOrbRailFloat 3.6s ease-in-out infinite;
}

.emoji-orb {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    animation: emojiOrbPulse 2.1s ease-in-out infinite;
    cursor: default;
    transition: all 0.2s ease;
}

.emoji-orb:hover { transform: scale(1.25) !important; background: rgba(255,255,255,0.13); }
.emoji-orb:nth-child(2) { animation-delay: 0.2s; }
.emoji-orb:nth-child(3) { animation-delay: 0.4s; }

/* ── Mobile stats (hidden on desktop) ── */
.hero-mobile-stats {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 14px;
    width: 100%;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
}

.hms-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 12px 6px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
    transition: var(--t);
}

.hms-item:hover {
    background: rgba(79,70,229,0.1);
    border-color: rgba(79,70,229,0.25);
    transform: translateY(-2px);
}

.hms-icon {
    font-size: 15px;
    color: var(--accent);
    margin-bottom: 2px;
}

.hms-value {
    font-family: var(--font-heading);
    font-size: var(--fs-sm);
    font-weight: 800;
    color: var(--text);
    display: block;
    line-height: 1;
}

.hms-label {
    font-size: 9px;
    color: var(--text-faint);
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    line-height: 1.2;
}


/* ── LIVE ACTIVITY STRIP ── */

.live-activity {
    padding: 0 0 72px;
    position: relative;
    z-index: 1;
}

.activity-panel {
    background: rgba(255,255,255,0.025);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: var(--border);
    border-radius: var(--r-3xl);
    padding: 28px 32px 32px;
    position: relative;
    overflow: hidden;
}

.activity-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(79,70,229,0.05) 50%, transparent 100%);
    transform: translateX(-120%);
    animation: activitySweep 6s linear infinite;
    pointer-events: none;
}

.activity-panel-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.activity-live-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: var(--fs-xs);
    color: var(--text-muted);
}

.activity-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #27c93f;
    animation: pulseDot 1.6s ease-in-out infinite;
}

.activity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.activity-card {
    background: rgba(255,255,255,0.03);
    border: var(--border);
    border-radius: var(--r-xl);
    padding: 16px 18px;
    position: relative;
    overflow: hidden;
    transition: var(--t);
}

.activity-card:hover {
    border-color: rgba(79,70,229,0.3);
    background: rgba(79,70,229,0.05);
}

.activity-card::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(79,70,229,0.85), transparent);
    transform: translateX(-100%);
    animation: activityRail 3.8s ease-in-out infinite;
}

.activity-card:nth-child(2)::after { animation-delay: 0.8s; }
.activity-card:nth-child(3)::after { animation-delay: 1.6s; }

.ac-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.ac-label { font-size: 9px; text-transform: uppercase; letter-spacing: 0.22em; color: var(--text-faint); }
.ac-title  { font-family: var(--font-heading); font-size: var(--fs-base); font-weight: 700; color: var(--text); margin-top: 2px; }
.ac-icon   { font-size: 18px; color: var(--accent); }

.ac-bars {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 58px;
}

.act-bar {
    flex: 1;
    border-radius: 3px 3px 0 0;
    transform-origin: bottom;
    animation: activityBarGrow 2.4s ease-in-out infinite;
}

.act-bar.bg-low  { background: rgba(255,255,255,0.1); }
.act-bar.bg-mid  { background: rgba(255,255,255,0.1); }
.act-bar.bg-pri  { background: var(--primary); }
.act-bar.bg-sec  { background: var(--secondary-light); box-shadow: 0 0 12px rgba(14,165,233,0.4); }

.act-bar:nth-child(1) { animation-delay: 0s; }
.act-bar:nth-child(2) { animation-delay: 0.12s; }
.act-bar:nth-child(3) { animation-delay: 0.24s; }
.act-bar:nth-child(4) { animation-delay: 0.36s; }

.ac-dot-rows { display: flex; flex-direction: column; gap: 10px; }
.ac-dot-row  { display: flex; align-items: center; gap: 10px; }

.act-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    animation: activityDotPulse 1.9s ease-in-out infinite;
}

.act-dot:nth-child(1) { animation-delay: 0s; }
.act-dot:nth-child(2) { animation-delay: 0.18s; }
.act-dot:nth-child(3) { animation-delay: 0.36s; }

.ac-progress-track { flex: 1; height: 8px; background: rgba(255,255,255,0.07); border-radius: var(--r-full); overflow: hidden; }
.ac-progress-fill  { height: 100%; border-radius: var(--r-full); opacity: 0.75; }


/* ── STATS STRIP ── */

/* ── Hero Bridge (platform ticker) ── */

.hero-bridge {
    background: var(--bg-primary);
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-top: none;
}

.hero-bridge-inner {
    position: relative;
    padding: 0;
    overflow: hidden;
}

.hero-bridge-inner::before,
.hero-bridge-inner::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 120px;
    z-index: 3;
    pointer-events: none;
}

.hero-bridge-inner::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-primary) 0%, transparent 100%);
}

.hero-bridge-inner::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-primary) 0%, transparent 100%);
}

.bridge-ticker {
    background: rgba(79,70,229,0.07);
    border-top: 1px solid rgba(79,70,229,0.18);
    border-bottom: 1px solid rgba(79,70,229,0.18);
    padding: 14px 0;
    overflow: hidden;
}

.bridge-track {
    display: flex;
    gap: 0;
    white-space: nowrap;
    animation: bridgeScroll 28s linear infinite;
    width: max-content;
}

@keyframes bridgeScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.bridge-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0 32px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.02em;
    position: relative;
    transition: color 0.2s ease;
}

.bridge-item::after {
    content: '·';
    position: absolute;
    right: 0;
    color: rgba(79,70,229,0.4);
    font-size: 18px;
}

.bridge-item i {
    font-size: 15px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 6px rgba(79,70,229,0.4));
}

.bridge-item:hover { color: var(--text); }

/* ── Stats Strip ── */

.stats-strip {
    padding: 72px 0;
    background: linear-gradient(180deg, rgba(79,70,229,0.05) 0%, transparent 100%);
    border-bottom: var(--border);
    position: relative;
    overflow: hidden;
}

.stats-strip::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 200px;
    background: radial-gradient(ellipse, rgba(124,58,237,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    position: relative;
    z-index: 1;
}

.stats-divider {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: var(--border);
}

.stat-item {
    text-align: center;
    padding: 24px 20px;
    position: relative;
    transition: var(--t);
    border-radius: var(--r-xl);
}

.stat-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-subtle);
    border-radius: var(--r-xl);
    opacity: 0;
    transition: var(--t);
}

.stat-item:hover::after { opacity: 1; }
.stat-item:hover { transform: translateY(-6px); }

.stat-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--r-lg);
    background: var(--gradient-subtle);
    border: var(--border-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 22px;
    color: var(--accent);
    transition: var(--t);
    position: relative;
    z-index: 1;
}

.stat-item:hover .stat-icon {
    background: var(--gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: var(--shadow-glow-sm);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(var(--fs-3xl), 3vw, var(--fs-5xl));
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.stat-label {
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

/* ── SERVICES ── */

.services-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}

.service-card {
    background: var(--card-bg);
    border: var(--border);
    border-radius: var(--r-2xl);
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: var(--t);
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-subtle);
    opacity: 0;
    transition: var(--t);
    border-radius: var(--r-2xl);
}

.service-card:hover::before { opacity: 1; }

.service-card:hover {
    border-color: rgba(79, 70, 229, 0.45);
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.4), var(--shadow-glow-sm);
}

/* Glow border effect */
.service-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--r-2xl);
    background: var(--gradient);
    z-index: -1;
    opacity: 0;
    transition: var(--t);
}

.service-card:hover::after { opacity: 0.5; }

.service-card.featured {
    grid-column: span 1;
    grid-row: span 2;
    background: linear-gradient(160deg, rgba(124,58,237,0.12) 0%, rgba(6,182,212,0.06) 100%);
    border-color: rgba(79, 70, 229, 0.25);
}

.service-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: var(--r-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    transition: var(--t);
}

.service-card:hover .service-icon-wrap {
    transform: scale(1.1) rotate(-5deg);
}

.service-card.ig .service-icon-wrap {
    background: rgba(225,48,108,0.15);
    border: 1px solid rgba(225,48,108,0.25);
}
.service-card.ig .service-icon-wrap i { color: #e1306c; }

.service-card.fb .service-icon-wrap {
    background: rgba(24,119,242,0.15);
    border: 1px solid rgba(24,119,242,0.25);
}
.service-card.fb .service-icon-wrap i { color: #1877f2; }

.service-card.tt .service-icon-wrap {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
}
.service-card.tt .service-icon-wrap i { color: #fff; }

.service-card.yt .service-icon-wrap {
    background: rgba(255,0,0,0.12);
    border: 1px solid rgba(255,0,0,0.2);
}
.service-card.yt .service-icon-wrap i { color: #ff4444; }

.service-card.tg .service-icon-wrap {
    background: rgba(38,176,236,0.15);
    border: 1px solid rgba(38,176,236,0.25);
}
.service-card.tg .service-icon-wrap i { color: #26b0ec; }

.service-card.tw .service-icon-wrap {
    background: rgba(29,155,240,0.12);
    border: 1px solid rgba(29,155,240,0.22);
}
.service-card.tw .service-icon-wrap i { color: #1d9bf0; }

.service-title {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.service-desc {
    font-size: var(--fs-sm);
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.service-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.service-price {
    font-family: var(--font-heading);
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--text-muted);
}

.service-price strong {
    font-size: var(--fs-xl);
    color: var(--text);
    font-weight: 800;
}

.service-arrow {
    width: 36px;
    height: 36px;
    border-radius: var(--r-full);
    background: var(--gradient-subtle);
    border: var(--border-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--accent);
    transition: var(--t-bounce);
}

.service-card:hover .service-arrow {
    background: var(--gradient);
    border-color: transparent;
    color: #fff;
    transform: translateX(4px) rotate(-45deg);
    box-shadow: var(--shadow-glow-sm);
}

/* Featured card extras */
.service-card.featured .service-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.service-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--fs-sm);
    color: var(--text-muted);
}

.service-feature-item i {
    font-size: 12px;
    color: #10b981;
    width: 16px;
    flex-shrink: 0;
}

/* ── WHY CHOOSE US ── */

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--card-bg);
    border: var(--border);
    border-radius: var(--r-xl);
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: var(--t);
    backdrop-filter: blur(12px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient);
    opacity: 0;
    transition: var(--t);
}

.feature-card:hover::before { opacity: 1; }

.feature-card:hover {
    border-color: rgba(79, 70, 229, 0.3);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(124,58,237,0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--r-lg);
    background: var(--gradient-subtle);
    border: var(--border-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--accent);
    margin-bottom: 22px;
    transition: var(--t);
}

.feature-card:hover .feature-icon {
    background: var(--gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: var(--shadow-glow-sm);
    transform: scale(1.05);
}

.feature-title {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.feature-desc {
    font-size: var(--fs-sm);
    color: var(--text-muted);
    line-height: 1.7;
}

/* ── DASHBOARD PREVIEW ── */

.dashboard-preview {
    padding: var(--section-padding);
    background: linear-gradient(180deg, transparent 0%, rgba(124,58,237,0.04) 50%, transparent 100%);
}

.preview-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.preview-text { max-width: 480px; }

.preview-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 36px;
}

.preview-highlight {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--card-bg);
    border: var(--border);
    border-radius: var(--r-lg);
    transition: var(--t);
}

.preview-highlight:hover {
    border-color: rgba(79, 70, 229, 0.3);
    background: var(--card-bg-hover);
    transform: translateX(6px);
}

.ph-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--r-md);
    background: var(--gradient-subtle);
    border: var(--border-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--accent);
    flex-shrink: 0;
}

.ph-text strong {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--fs-base);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2px;
}

.ph-text span { font-size: var(--fs-sm); color: var(--text-muted); }

/* Full dashboard panel */
.preview-panel {
    background: rgba(15, 22, 41, 0.6);
    border: var(--border);
    border-radius: var(--r-2xl);
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,0.5),
                inset 0 1px 0 rgba(255,255,255,0.06),
                var(--shadow-glow-primary);
    backdrop-filter: blur(20px);
}

.panel-header {
    padding: 16px 20px;
    border-bottom: var(--border-subtle);
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(15,23,42,0.5);
}

.panel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.panel-dot:nth-child(1) { background: #ff5f57; }
.panel-dot:nth-child(2) { background: #febc2e; }
.panel-dot:nth-child(3) { background: #28c840; }

.panel-title-bar {
    flex: 1;
    text-align: center;
    font-size: var(--fs-xs);
    color: var(--text-faint);
    font-family: var(--font-heading);
}

.panel-body {
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.panel-widget {
    background: rgba(255,255,255,0.04);
    border: var(--border-subtle);
    border-radius: var(--r-lg);
    padding: 16px;
}

.panel-widget.full { grid-column: span 2; }

.pw-title {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-faint);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.pw-big-number {
    font-family: var(--font-heading);
    font-size: var(--fs-3xl);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 6px;
}

.pw-change {
    font-size: 11px;
    font-weight: 600;
    color: #10b981;
    display: flex;
    align-items: center;
    gap: 3px;
}

/* Full-size chart */
.panel-chart-full {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 80px;
    margin-top: 8px;
}

.pcf-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    height: 100%;
}

.pcf-bar {
    width: 100%;
    border-radius: 3px 3px 0 0;
    background: var(--gradient);
    opacity: 0.65;
    transform-origin: bottom;
    animation: barGrow 1.2s ease both;
    min-height: 4px;
}

.pcf-col.hi .pcf-bar { opacity: 1; box-shadow: 0 0 14px rgba(124,58,237,0.5); }

.pcf-col:nth-child(1) .pcf-bar { animation-delay: 0.1s; }
.pcf-col:nth-child(2) .pcf-bar { animation-delay: 0.2s; }
.pcf-col:nth-child(3) .pcf-bar { animation-delay: 0.3s; }
.pcf-col:nth-child(4) .pcf-bar { animation-delay: 0.4s; }
.pcf-col:nth-child(5) .pcf-bar { animation-delay: 0.5s; }
.pcf-col:nth-child(6) .pcf-bar { animation-delay: 0.6s; }
.pcf-col:nth-child(7) .pcf-bar { animation-delay: 0.7s; }
.pcf-col:nth-child(8) .pcf-bar { animation-delay: 0.8s; }

.pcf-lbl { font-size: 8px; color: var(--text-faint); }

/* Progress bars in widget */
.progress-list { display: flex; flex-direction: column; gap: 8px; }

.progress-item { }
.progress-item-head {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: var(--text-muted);
    margin-bottom: 4px;
    font-weight: 500;
}

.progress-track {
    height: 5px;
    background: rgba(255,255,255,0.07);
    border-radius: var(--r-full);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: var(--r-full);
    background: var(--gradient);
    animation: lineWidth 1.5s ease 0.5s both;
}

/* Sparkline in widget */
.sparkline {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 40px;
    margin-top: 10px;
}

.spark-bar {
    flex: 1;
    border-radius: 2px;
    background: rgba(79, 70, 229, 0.5);
    min-height: 3px;
    transition: var(--t);
}

.spark-bar.hi { background: var(--gradient); }

/* ── PRICING ── */

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: var(--card-bg);
    border: var(--border);
    border-radius: var(--r-2xl);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: var(--t);
    backdrop-filter: blur(16px);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), var(--shadow-glow-sm);
    border-color: rgba(79, 70, 229, 0.35);
}

.pricing-card.popular {
    background: linear-gradient(160deg, rgba(124,58,237,0.14) 0%, rgba(6,182,212,0.07) 100%);
    border-color: rgba(79, 70, 229, 0.4);
    box-shadow: 0 0 60px rgba(79, 70, 229, 0.18), var(--shadow-lg);
    transform: scale(1.04);
    padding-top: 52px;
}

.pricing-card.popular:hover {
    transform: scale(1.04) translateY(-8px);
    box-shadow: 0 0 80px rgba(79, 70, 229, 0.3), var(--shadow-lg);
}

.popular-badge {
    position: absolute;
    top: 17px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: #fff;
    font-size: var(--fs-xs);
    font-weight: 700;
    font-family: var(--font-heading);
    padding: 5px 18px;
    border-radius: var(--r-full);
    white-space: nowrap;
    letter-spacing: 0.04em;
    box-shadow: var(--shadow-glow-sm);
}

.plan-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--r-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.pricing-card:not(.popular) .plan-icon {
    background: var(--gradient-subtle);
    border: var(--border-primary);
    color: var(--accent);
}

.pricing-card.popular .plan-icon {
    background: var(--gradient);
    color: #fff;
    box-shadow: var(--shadow-glow-sm);
}

.plan-name {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.plan-tagline {
    font-size: var(--fs-sm);
    color: var(--text-muted);
    margin-bottom: 28px;
}

.plan-price {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    margin-bottom: 8px;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: var(--fs-6xl);
    font-weight: 900;
    line-height: 1;
}

.pricing-card.popular .price-amount { color: var(--secondary-light); }

.price-currency {
    font-family: var(--font-heading);
    font-size: var(--fs-2xl);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-muted);
}

.price-period {
    font-size: var(--fs-sm);
    color: var(--text-muted);
    margin-bottom: 28px;
}

.plan-divider {
    height: 1px;
    background: var(--border);
    margin: 24px 0;
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.plan-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--fs-sm);
    color: var(--text-secondary);
}

.plan-feature i {
    width: 18px;
    text-align: center;
    font-size: 12px;
    flex-shrink: 0;
}

.plan-feature .check { color: #10b981; }
.plan-feature .cross { color: var(--text-faint); }

.plan-feature.muted { color: var(--text-faint); }

.plan-cta {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    border-radius: var(--r-full);
    font-family: var(--font-heading);
    font-size: var(--fs-sm);
    font-weight: 700;
    transition: var(--t);
    cursor: pointer;
    letter-spacing: 0.02em;
    text-align: center;
}

.pricing-card:not(.popular) .plan-cta {
    background: transparent;
    border: var(--border);
    color: var(--text);
}

.pricing-card:not(.popular) .plan-cta:hover {
    border-color: rgba(79, 70, 229, 0.5);
    background: var(--gradient-subtle);
    color: var(--accent);
}

.pricing-card.popular .plan-cta {
    background: var(--gradient);
    color: #fff;
    border: none;
    box-shadow: 0 4px 24px rgba(79, 70, 229, 0.4);
}

.pricing-card.popular .plan-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 36px rgba(79, 70, 229, 0.6);
}

/* ── TESTIMONIALS ── */

.testimonials-track-wrap {
    position: relative;
    overflow: hidden;
    padding: 20px 0 60px;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.testimonial-card {
    min-width: 380px;
    max-width: 380px;
    background: var(--card-bg);
    border: var(--border);
    border-radius: var(--r-2xl);
    padding: 32px;
    backdrop-filter: blur(16px);
    transition: var(--t);
    flex-shrink: 0;
}

.testimonial-card:hover {
    border-color: rgba(79, 70, 229, 0.35);
    box-shadow: var(--shadow-md), var(--shadow-glow-sm);
    transform: translateY(-4px);
}

.testi-stars {
    display: flex;
    gap: 3px;
    color: #fbbf24;
    font-size: 14px;
    margin-bottom: 16px;
}

.testi-text {
    font-size: var(--fs-base);
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}

.testi-text::before { content: '\201C'; }
.testi-text::after  { content: '\201D'; }

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: var(--fs-base);
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    border: 2px solid rgba(255,255,255,0.1);
}

.testi-info strong {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--text);
}

.testi-info span { font-size: var(--fs-xs); color: var(--text-muted); }

/* Slider controls */
.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 8px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--card-bg);
    border: var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text-muted);
    transition: var(--t);
    cursor: pointer;
}

.slider-btn:hover {
    background: var(--gradient);
    border-color: transparent;
    color: #fff;
    box-shadow: var(--shadow-glow-sm);
}

.slider-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: var(--r-full);
    background: rgba(255,255,255,0.2);
    transition: var(--t);
    cursor: pointer;
    border: none;
    outline: none;
}

.slider-dot.active {
    background: var(--gradient);
    width: 28px;
}

/* ── FAQ ── */

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--card-bg);
    border: var(--border);
    border-radius: var(--r-xl);
    overflow: hidden;
    transition: var(--t);
    backdrop-filter: blur(12px);
}

.faq-item.open {
    border-color: rgba(79, 70, 229, 0.35);
    box-shadow: var(--shadow-md), 0 0 30px rgba(79, 70, 229, 0.08);
}

.faq-trigger {
    width: 100%;
    padding: 22px 26px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    background: transparent;
    border: none;
    text-align: left;
    transition: var(--t-fast);
}

.faq-trigger:hover { background: rgba(255,255,255,0.03); }

.faq-q {
    flex: 1;
    font-family: var(--font-heading);
    font-size: var(--fs-base);
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gradient-subtle);
    border: var(--border-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--accent);
    flex-shrink: 0;
    transition: var(--t);
}

.faq-item.open .faq-icon {
    background: var(--gradient);
    border-color: transparent;
    color: #fff;
    transform: rotate(45deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-body { max-height: 300px; }

.faq-answer {
    padding: 0 26px 22px 26px;
    font-size: var(--fs-sm);
    color: var(--text-muted);
    line-height: 1.75;
    border-top: var(--border-subtle);
    padding-top: 16px;
}

/* ── CTA SECTION ── */

.cta-section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.cta-inner {
    background: linear-gradient(135deg, rgba(124,58,237,0.18) 0%, rgba(6,182,212,0.12) 100%);
    border: 1px solid rgba(79, 70, 229, 0.3);
    border-radius: var(--r-3xl);
    padding: 100px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.cta-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-mesh);
    background-size: 40px 40px;
    opacity: 0.5;
    pointer-events: none;
}

.cta-orb-1 {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(79, 70, 229, 0.15);
    filter: blur(80px);
    top: -150px;
    left: -100px;
    pointer-events: none;
}

.cta-orb-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(14, 165, 233, 0.12);
    filter: blur(80px);
    bottom: -100px;
    right: -80px;
    pointer-events: none;
}

.cta-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(79, 70, 229, 0.15);
    border: 1px solid rgba(79, 70, 229, 0.3);
    border-radius: var(--r-full);
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(var(--fs-3xl), 4.5vw, var(--fs-6xl));
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta-desc {
    font-size: var(--fs-lg);
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto 44px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 36px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: var(--fs-sm);
    color: var(--text-muted);
    font-weight: 500;
}

.cta-trust-item i { color: #10b981; font-size: 13px; }

/* ── FOOTER ── */

.footer {
    background: rgba(8, 9, 26, 0.95);
    border-top: var(--border);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: var(--border);
}

.footer-brand-col { }

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
}

.footer-desc {
    font-size: var(--fs-sm);
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 24px;
    max-width: 280px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--r-md);
    background: var(--card-bg);
    border: var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text-muted);
    transition: var(--t);
}

.social-icon:hover {
    background: var(--gradient);
    border-color: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-sm);
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

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

.footer-links a {
    font-size: var(--fs-sm);
    color: var(--text-muted);
    transition: var(--t-fast);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(4px);
}

.footer-links a i { font-size: 10px; opacity: 0; transition: var(--t-fast); }
.footer-links a:hover i { opacity: 1; }

/* Newsletter */
.newsletter-form {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}

.newsletter-input {
    flex: 1;
    padding: 11px 16px;
    background: var(--card-bg);
    border: var(--border);
    border-radius: var(--r-full);
    font-size: var(--fs-sm);
    color: var(--text);
    outline: none;
    transition: var(--t-fast);
}

.newsletter-input::placeholder { color: var(--text-faint); }

.newsletter-input:focus {
    border-color: rgba(79, 70, 229, 0.5);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.12);
}

.newsletter-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gradient);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #fff;
    cursor: pointer;
    flex-shrink: 0;
    transition: var(--t);
    box-shadow: var(--shadow-glow-sm);
}

.newsletter-btn:hover {
    transform: scale(1.08);
    box-shadow: var(--shadow-glow-primary);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 4px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: var(--fs-sm);
    color: var(--text-muted);
}

.footer-contact-item i {
    color: var(--accent);
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Footer bottom */
.footer-bottom {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
}

.footer-copy {
    font-size: var(--fs-sm);
    color: var(--text-faint);
}

.footer-copy a {
    color: var(--text-muted);
    transition: var(--t-fast);
}
.footer-copy a:hover { color: var(--accent); }

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: var(--fs-sm);
    color: var(--text-faint);
    transition: var(--t-fast);
}

.footer-legal a:hover { color: var(--text-muted); }

/* ── Back to Top ── */

#back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--gradient);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    z-index: var(--z-float);
    box-shadow: var(--shadow-glow-sm);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--t);
    pointer-events: none;
}

#back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

#back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow-primary);
}

/* ════════════════════════════════════════════
   HERO INTERACTIVE EFFECTS
════════════════════════════════════════════ */

/* Cursor glow blob */
#hero-cursor-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79,70,229,0.18) 0%, rgba(14,165,233,0.08) 50%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    will-change: transform;
    filter: blur(2px);
}

/* Parallax: hero visual wrap subtle tilt on mouse move */
.hero-visual-wrap {
    transform-style: preserve-3d;
}

/* Button click ripple */
@keyframes btnRipple {
    to { transform: scale(30); opacity: 0; }
}

/* Proof strip avatar fan on hover */
.hero-proof-strip:hover .proof-av {
    margin-right: -4px;
    transition: margin 0.3s ease;
}
.hero-proof-strip:hover .proof-av:last-child { margin-right: 0; }

/* Hero proof strip hover lift */
.hero-proof-strip {
    transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.hero-proof-strip:hover {
    border-color: rgba(129,140,248,0.25);
    box-shadow: 0 8px 32px rgba(0,0,0,0.35), 0 0 0 1px rgba(79,70,229,0.12);
    transform: translateY(-2px);
}

/* Cheapest pill stronger hover */
.cheapest-pill:hover {
    box-shadow: 0 0 28px rgba(79,70,229,0.45);
    border-color: rgba(129,140,248,0.55);
    transform: scale(1.05);
    transition: all 0.2s ease;
}
