@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
    /* Matched to app global-colors.css */
    --primary: #b891ff;
    --primary-dim: #a07ae6;
    --primary-bright: #d4bfff;
    --accent: #8b56ec;
    --neon-purple: #b891ff;
    --neon-pink: #EC4899;
    --accent-green: #1ED760;
    --bg-deepspace: #0a0a0a;
    --bg-card: #0e0e0e;
    --bg-card-hover: #121212;
    --border-card: #141414;
    --border-card-hover: rgba(184, 145, 255, 0.25);
    --text-primary: #FAFAFA;
    --text-secondary: #A8A8A8;
    --text-dim: #666666;
}

/* ==========================================
   GLOBAL RESET & BASE
   ========================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: #141414 #0a0a0a;
}

html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }
.lenis.lenis-stopped { overflow: hidden; }

/* Webkit Scrollbar (Chrome, Edge, Safari) */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #141414;
    border-radius: 100px;
    border: 2px solid #0a0a0a;
}

::-webkit-scrollbar-thumb:hover {
    background: #1a1a1a;
}

html {
    background-color: var(--bg-deepspace);
    min-height: 100vh;
    width: 100%;
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--text-secondary);
    padding-top: 64px;
    position: relative;
    background: var(--bg-deepspace);
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* ==========================================
   BLACK HOLE CANVAS BACKGROUND
   ========================================== */
#blackholeCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}

.canvas-frost-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(10, 10, 10, 0.4) 100%);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ==========================================
   GLOBAL TYPOGRAPHY
   ========================================== */
.section-title,
.hero-title,
.showcase-title,
.section-header h2,
.cta-title-new {
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.15;
    color: var(--text-primary);
}

.section-description,
.hero-description,
.showcase-description,
.section-header p,
.cta-subtitle-new {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

/* ==========================================
   SCROLL ANIMATIONS
   ========================================== */
.slide-in-up {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
    transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.slide-in-up.animate-in {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.scale-in {
    opacity: 0;
    transform: scale3d(0.85, 0.85, 1);
    transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.scale-in.animate-in {
    opacity: 1;
    transform: scale3d(1, 1, 1);
}

.slide-in-left {
    opacity: 0;
    transform: translate3d(-60px, 0, 0);
    transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.slide-in-left.animate-in {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.slide-in-right {
    opacity: 0;
    transform: translate3d(60px, 0, 0);
    transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.slide-in-right.animate-in {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.fade-in {
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-in.animate-in {
    opacity: 1;
}

.reveal-up {
    opacity: 0;
    transform: translate3d(0, 80px, 0) scale3d(0.95, 0.95, 1);
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-up.animate-in {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
}

/* Staggered children - parent triggers, children animate with delays */
.stagger-children > * {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.stagger-children.animate-in > *:nth-child(1) { opacity: 1; transform: translate3d(0, 0, 0); transition-delay: 0s; }
.stagger-children.animate-in > *:nth-child(2) { opacity: 1; transform: translate3d(0, 0, 0); transition-delay: 0.08s; }
.stagger-children.animate-in > *:nth-child(3) { opacity: 1; transform: translate3d(0, 0, 0); transition-delay: 0.16s; }
.stagger-children.animate-in > *:nth-child(4) { opacity: 1; transform: translate3d(0, 0, 0); transition-delay: 0.24s; }
.stagger-children.animate-in > *:nth-child(5) { opacity: 1; transform: translate3d(0, 0, 0); transition-delay: 0.32s; }
.stagger-children.animate-in > *:nth-child(6) { opacity: 1; transform: translate3d(0, 0, 0); transition-delay: 0.40s; }
.stagger-children.animate-in > *:nth-child(7) { opacity: 1; transform: translate3d(0, 0, 0); transition-delay: 0.48s; }
.stagger-children.animate-in > *:nth-child(8) { opacity: 1; transform: translate3d(0, 0, 0); transition-delay: 0.56s; }

/* Section divider grow animation */
.divider-grow {
    transform: scaleX(0);
    opacity: 0;
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s ease;
}

.divider-grow.animate-in {
    transform: scaleX(1);
    opacity: 1;
}

/* Table rows stagger in */
.table-reveal {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.table-reveal.animate-in {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.main-header::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, var(--bg-deepspace) 0%, transparent 100%);
    pointer-events: none;
    z-index: 999;
}

.navbar {
    padding: 0;
    height: 64px;
    display: flex;
    align-items: center;
    background: var(--bg-deepspace);
    border-bottom: none;
}

.navbar.scrolled {
    height: 52px;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.navbar-brand {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: opacity 0.3s ease;
}

.navbar-brand:hover {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3px;
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.88rem;
    position: relative;
    padding: 0.5rem 0.85rem;
    border-radius: 8px;
}

.nav-link::after {
    display: none;
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.06);
}

/* Nav Social Icons */
.nav-social {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex-shrink: 0;
}

.nav-social a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    text-decoration: none;
}

.nav-social a:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.06);
}

.nav-social svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
    text-align: center;
    padding: 5rem 2rem 3.5rem;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem 0.4rem 0.65rem;
    border-radius: 100px;
    background: rgba(184, 145, 255, 0.06);
    border: 1px solid rgba(184, 145, 255, 0.12);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.75rem;
    letter-spacing: 0.02em;
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 8px var(--primary);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--primary); }
    50% { opacity: 0.5; box-shadow: 0 0 16px var(--primary); }
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 700;
    letter-spacing: -2px;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 1.75rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* Download Button */
.hero-cta-download {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    background: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 12px;
    transition: all 0.35s ease;
    box-shadow: 0 4px 20px rgba(184, 145, 255, 0.25), 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-cta-download span { margin: 0; }

.hero-cta-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(184, 145, 255, 0.3);
}

/* Premium Button */
.btn-wrapper { display: inline-block; }

.hero-cta-premium-fancy {
    display: flex;
    align-items: center;
    padding: 14px 28px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-decoration: none;
    cursor: pointer;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 12px;
    transition: all 0.35s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35), 0 2px 6px rgba(0, 0, 0, 0.2);
}

.hero-cta-premium-fancy:hover {
    border-color: rgba(184, 145, 255, 0.2);
    background: var(--bg-card-hover);
    transform: translateY(-3px);
    color: var(--text-primary);
}

.hero-cta-premium-fancy .btn-letter {
    display: inline-block;
    color: rgba(255, 255, 255, 0.4);
    animation: letter-anim 2.5s ease-in-out infinite;
}

.hero-cta-premium-fancy:hover .btn-letter { color: #fff; }

@keyframes letter-anim { 50% { color: #fff; } }

.hero-cta-premium-fancy .btn-letter:nth-child(1) { animation-delay: 0s; }
.hero-cta-premium-fancy .btn-letter:nth-child(2) { animation-delay: 0.08s; }
.hero-cta-premium-fancy .btn-letter:nth-child(3) { animation-delay: 0.12s; }
.hero-cta-premium-fancy .btn-letter:nth-child(4) { animation-delay: 0.16s; }
.hero-cta-premium-fancy .btn-letter:nth-child(5) { animation-delay: 0.24s; }
.hero-cta-premium-fancy .btn-letter:nth-child(6) { animation-delay: 0.32s; }
.hero-cta-premium-fancy .btn-letter:nth-child(7) { animation-delay: 0.4s; }
.hero-cta-premium-fancy .btn-letter:nth-child(8) { animation-delay: 0.48s; }
.hero-cta-premium-fancy .btn-letter:nth-child(9) { animation-delay: 0.56s; }
.hero-cta-premium-fancy .btn-letter:nth-child(10) { animation-delay: 0.64s; }
.hero-cta-premium-fancy .btn-letter:nth-child(11) { animation-delay: 0.72s; }

/* ==========================================
   SHOWCASE CAROUSEL
   ========================================== */
.mini-showcase {
    margin: 0 auto;
    max-width: 1200px;
    padding: 4rem 2rem 4rem;
    position: relative;
    z-index: 2;
    height: auto;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-carousel {
    position: relative;
    width: 100%;
    height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 2000px;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-item {
    position: absolute;
    transition: all 0.5s ease;
}

.showcase-item.center {
    transform: translateZ(0) scale(1);
    z-index: 10;
    position: relative;
}

.showcase-item.left {
    transform: translateX(-540px) translateZ(-200px) scale(0.75);
    z-index: 1;
    opacity: 1;
}

.showcase-item.right {
    transform: translateX(540px) translateZ(-200px) scale(0.75);
    z-index: 1;
    opacity: 1;
}

.showcase-container {
    position: relative;
    max-width: 820px;
    border-radius: 20px;
}

.showcase-container::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    background: radial-gradient(ellipse at center, rgba(184, 145, 255, 0.22), rgba(139, 86, 236, 0.12) 50%, transparent 80%);
    border-radius: 24px;
    filter: blur(10px);
    opacity: 1;
    z-index: -2;
}

.showcase-glow-gradient {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(184, 145, 255, 0.3), rgba(139, 86, 236, 0.18), rgba(184, 145, 255, 0.25));
    border-radius: 20px;
    filter: blur(4px);
    opacity: 1;
    z-index: -1;
    pointer-events: none;
}

.showcase-container::after {
    display: none;
}

.mini-showcase img {
    width: 100%;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    display: block;
    background: var(--bg-deepspace);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* ==========================================
   SECTION HEADERS (Shared)
   ========================================== */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -1px;
    margin-bottom: 0.75rem;
}

.section-header h2 .gradient-word {
    color: var(--primary);
    -webkit-text-fill-color: var(--primary);
    background: none;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0 auto;
}

/* ==========================================
   COMPARISON TABLE
   ========================================== */
.comparison-section {
    position: relative;
    z-index: 2;
    padding: 5rem 0;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.comparison-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 16px;
    padding: 1.75rem;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.comparison-card:hover {
    border-color: var(--border-card-hover);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.comparison-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(184, 145, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
}

.comparison-card-icon svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.comparison-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
}

.comparison-card-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.comparison-card-vs {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    font-size: 0.82rem;
}

.vs-label {
    font-weight: 700;
    display: inline-block;
    min-width: 70px;
}

.vs-them {
    color: var(--text-dim);
    padding: 0.4rem 0.7rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
}

.vs-them .vs-label {
    color: #7a7a90;
}

.vs-us {
    color: var(--text-primary);
    padding: 0.4rem 0.7rem;
    border-radius: 8px;
    background: rgba(184, 145, 255, 0.04);
    border: 1px solid rgba(184, 145, 255, 0.1);
}

.vs-us .vs-label {
    color: var(--primary);
}

/* ==========================================
   FEATURE SHOWCASE CARDS
   ========================================== */
.feature-showcase-section {
    padding: 5rem 0;
    position: relative;
    z-index: 2;
}

.feature-showcase-section .container {
    position: relative;
}

.feature-section-neon-circle {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 145, 255, 0.06) 0%, rgba(139, 86, 236, 0.03) 30%, transparent 60%);
    pointer-events: none;
    filter: blur(60px);
    z-index: -1;
}

.feature-full-showcase {
    padding: 4rem 0;
    position: relative;
}

/* ==========================================
   NEON CONNECTOR LINES BETWEEN FEATURES
   ========================================== */
.feature-connector {
    position: relative;
    width: 100%;
    height: 80px;
    z-index: 2;
    pointer-events: none;
}

.feature-connector svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.feature-connector .connector-glow {
    fill: none;
    stroke: rgba(184, 145, 255, 0.06);
    stroke-width: 12;
    stroke-linecap: round;
    filter: blur(6px);
}

.feature-connector .connector-line {
    fill: none;
    stroke: url(#connectorGradient);
    stroke-width: 3;
    stroke-linecap: round;
}

.feature-connector .connector-line-bright {
    fill: none;
    stroke: rgba(184, 145, 255, 0.3);
    stroke-width: 1.5;
    stroke-linecap: round;
}

.feature-connector .connector-dot {
    fill: var(--primary);
    filter: drop-shadow(0 0 4px rgba(184, 145, 255, 0.5));
}

.feature-connector .connector-dot-glow {
    fill: rgba(184, 145, 255, 0.12);
}

@media (max-width: 968px) {
    .feature-connector {
        display: none;
    }
}

.feature-full-showcase .showcase-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    align-items: start;
}

.feature-full-showcase .showcase-grid.showcase-grid-reverse {
    grid-template-columns: 1fr 1.4fr;
}

.showcase-grid-reverse .showcase-content { order: 1; }
.showcase-grid-reverse .showcase-image-wrapper { order: 2; }

.showcase-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: visible;
}

.showcase-image-wrapper .neon-circle-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 145, 255, 0.05) 0%, transparent 60%);
    z-index: -3;
    pointer-events: none;
    filter: blur(40px);
}

.showcase-image-wrapper::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    background: radial-gradient(ellipse at center, rgba(184, 145, 255, 0.06), transparent 70%);
    border-radius: 24px;
    filter: blur(25px);
    opacity: 0.4;
    z-index: -2;
}

.showcase-image-wrapper::after {
    display: none;
}

.showcase-glow-gradient-opt {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: rgba(184, 145, 255, 0.06);
    border-radius: 20px;
    filter: blur(5px);
    opacity: 0.6;
    z-index: -1;
    pointer-events: none;
}

.showcase-image {
    width: 100%;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    display: block;
    background: var(--bg-deepspace);
}

/* Clean border for feature showcase images */
.feature-full-showcase .showcase-image {
    border: 1px solid var(--border-card);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    aspect-ratio: 16 / 9;
}

.showcase-content { padding: 0 0 2rem; }

.showcase-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.showcase-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.75rem;
}

.showcase-features {
    list-style: none;
}

.showcase-features li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 0.85rem;
    font-size: 1rem;
    color: var(--text-secondary);
}

.showcase-features li svg { flex-shrink: 0; }

/* ==========================================
   Q&A SECTION
   ========================================== */
.qna-section {
    padding: 5rem 0;
    position: relative;
    z-index: 2;
}

.qna-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
}

.qna-item {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 14px;
    overflow: hidden;
    align-self: start;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.qna-item:hover {
    border-color: var(--border-card-hover);
    background: var(--bg-card-hover);
}

.qna-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    padding: 1.4rem 1.6rem 0.5rem;
    gap: 1.5rem;
}

.qna-toggle {
    display: none;
}

.qna-answer {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
    padding: 0 1.6rem 1.4rem;
    opacity: 1;
}

/* ==========================================
   PRICING SECTION
   ========================================== */
.pricing-section {
    padding: 5rem 0;
    position: relative;
    z-index: 2;
}

.pricing-toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    margin-bottom: 2.5rem;
}

.pricing-toggle-label {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-dim);
    transition: color 0.3s ease;
    cursor: pointer;
}

.pricing-toggle-label.active {
    color: var(--text-primary);
}

.pricing-toggle {
    position: relative;
    width: 52px;
    height: 28px;
    border-radius: 100px;
    border: 1px solid var(--border-card);
    background: var(--bg-card);
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
}

.pricing-toggle:hover {
    border-color: var(--border-card-hover);
}

.pricing-toggle-knob {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: none;
}

.pricing-toggle.active .pricing-toggle-knob {
    transform: translateX(24px);
}

.pricing-toggle.active {
    background: rgba(184, 145, 255, 0.08);
    border-color: var(--border-card-hover);
}

.pricing-save-badge {
    font-size: 0.72rem;
    font-weight: 700;
    color: #fff;
    background: var(--primary);
    padding: 0.2rem 0.65rem;
    border-radius: 100px;
    letter-spacing: 0.02em;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1fr;
    gap: 1.25rem;
    align-items: center;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 20px;
    padding: 2.25rem 1.75rem;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    border-color: var(--border-card-hover);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}

/* Featured card — taller and highlighted */
.pricing-card-featured {
    padding: 3rem 1.75rem;
    border-color: var(--border-card-hover);
    background: rgba(184, 145, 255, 0.04);
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.pricing-card-featured:hover {
    border-color: var(--border-card-hover);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(-6px);
}

.pricing-card-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.3rem 1.2rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #fff;
    background: var(--primary);
    border-radius: 100px;
    white-space: nowrap;
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 1.75rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-card);
}

.pricing-tier-label {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.pricing-amount {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -1.5px;
    line-height: 1;
}

.pricing-card-featured .pricing-amount {
    font-size: 3.2rem;
}

.pricing-period {
    font-size: 0.95rem;
    color: var(--text-dim);
    font-weight: 500;
}

.pricing-tagline {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin: 0;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: 2rem;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.pricing-features li svg {
    flex-shrink: 0;
}

.pricing-feature-disabled {
    opacity: 0.35;
}

.pricing-btn {
    display: block;
    text-align: center;
    padding: 0.85rem 1.5rem;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--text-primary);
    background: var(--bg-card-hover);
    border: 1px solid var(--border-card);
    transition: all 0.3s ease;
    cursor: pointer;
}

.pricing-btn:hover {
    background: rgba(184, 145, 255, 0.06);
    border-color: var(--border-card-hover);
    transform: translateY(-2px);
}

.pricing-btn-featured {
    color: #fff;
    background: var(--primary);
    border: 1px solid var(--primary);
    box-shadow: 0 0 15px rgba(184, 145, 255, 0.15);
}

.pricing-btn-featured:hover {
    box-shadow: 0 8px 25px rgba(184, 145, 255, 0.25);
    transform: translateY(-3px);
}

/* Strikethrough original price for lifetime */
.pricing-amount-old {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dim);
    text-decoration: line-through;
    opacity: 0.5;
    margin-right: 0.15rem;
}

/* Money-back guarantee badge */
.pricing-guarantee {
    font-size: 0.8rem;
    color: rgba(16, 185, 129, 0.85);
    text-align: center;
    margin-bottom: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* Feature Comparison Table */
.pricing-comparison {
    margin-top: 4rem;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-card);
}

.pricing-comparison-title {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.pricing-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.pricing-comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.pricing-comparison-table th,
.pricing-comparison-table td {
    padding: 0.75rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pricing-comparison-table th:first-child,
.pricing-comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--text-secondary);
}

.pricing-comparison-table th {
    color: var(--text-dim);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding-bottom: 1rem;
}

.pricing-col-featured {
    color: var(--primary) !important;
    font-weight: 600 !important;
}

.pricing-comparison-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.pricing-table-divider td {
    height: 0.5rem;
    border-bottom: 1px solid var(--border-card);
}

.pricing-table-price-row td {
    font-weight: 700;
    color: var(--text-primary);
    padding-top: 1rem;
    font-size: 0.95rem;
}

/* ==========================================
   DOWNLOAD / CTA SECTION
   ========================================== */
.cta-section-new {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
    z-index: 2;
    overflow: hidden;
}

.cta-neon-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 145, 255, 0.06) 0%, rgba(139, 86, 236, 0.03) 30%, transparent 60%);
    pointer-events: none;
    filter: blur(50px);
    z-index: 0;
}

.cta-content-new {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 750px;
    padding: 0 2rem;
}

.cta-title-new {
    font-size: clamp(2.5rem, 5.5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.title-line {
    display: block;
    color: #ffffff;
}

.title-gradient {
    display: block;
    color: var(--primary);
    -webkit-text-fill-color: var(--primary);
    background: none;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ==========================================
   MICRO-INTERACTION ANIMATIONS
   ========================================== */

/* Floating hover for hero badge */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.hero-badge {
    animation: float 4s ease-in-out infinite;
}

/* Glow pulse on comparison card icons on hover */
@keyframes icon-glow-pulse {
    0%, 100% { box-shadow: 0 0 0 rgba(184, 145, 255, 0); }
    50% { box-shadow: 0 0 12px rgba(184, 145, 255, 0.2); }
}

.comparison-card:hover .comparison-card-icon {
    animation: icon-glow-pulse 1.5s ease-in-out infinite;
    background: rgba(184, 145, 255, 0.12);
    transition: background 0.3s ease;
}

/* Shimmer effect on gradient words */
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.gradient-word {
    background-size: 200% auto;
    animation: shimmer 6s linear infinite;
}

/* Showcase feature list items — stagger fade-in on scroll */
.showcase-features li {
    opacity: 0;
    transform: translateX(-12px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.slide-in-right.animate-in .showcase-features li,
.slide-in-left.animate-in .showcase-features li {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right.animate-in .showcase-features li:nth-child(1),
.slide-in-left.animate-in .showcase-features li:nth-child(1) { transition-delay: 0.1s; }
.slide-in-right.animate-in .showcase-features li:nth-child(2),
.slide-in-left.animate-in .showcase-features li:nth-child(2) { transition-delay: 0.2s; }
.slide-in-right.animate-in .showcase-features li:nth-child(3),
.slide-in-left.animate-in .showcase-features li:nth-child(3) { transition-delay: 0.3s; }
.slide-in-right.animate-in .showcase-features li:nth-child(4),
.slide-in-left.animate-in .showcase-features li:nth-child(4) { transition-delay: 0.4s; }

/* Pricing card hover lift + glow */
.pricing-card {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--border-card-hover);
}

.pricing-card-featured:hover {
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.4);
}

/* Q&A items — subtle shift on hover */
.qna-item {
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.qna-item:hover {
    border-color: var(--border-card-hover);
    background: var(--bg-card-hover);
    transform: translateX(4px);
}

/* Download button pulse ring */
@keyframes btn-pulse-ring {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(1.35); opacity: 0; }
}

.cta-download-btn::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 14px;
    border: 2px solid var(--primary);
    animation: btn-pulse-ring 2.5s ease-out infinite;
    pointer-events: none;
}

/* Trust badge items slide-in stagger */
.cta-trust-badges.animate-in .trust-item {
    opacity: 1;
    transform: translateY(0);
}

.cta-trust-badges .trust-item {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.cta-trust-badges.animate-in .trust-item:nth-child(1) { transition-delay: 0.1s; }
.cta-trust-badges.animate-in .trust-item:nth-child(2) { transition-delay: 0.25s; }
.cta-trust-badges.animate-in .trust-item:nth-child(3) { transition-delay: 0.4s; }

/* Footer — always visible */
.footermenu .footer-content {
    opacity: 1;
    transform: translateY(0);
}

.footermenu .footer-content.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Section divider glow pulse */
@keyframes divider-pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.section-divider.animate-in {
    animation: divider-pulse 3s ease-in-out infinite;
}

.cta-subtitle-new {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.cta-download-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
}

.cta-download-btn .btn-glow {
    position: absolute;
    inset: -2px;
    background: rgba(184, 145, 255, 0.2);
    border-radius: 14px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    filter: blur(12px);
}

@keyframes glow-rotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.cta-download-btn:hover .btn-glow { opacity: 1; }

.cta-download-btn .btn-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 1;
}

.cta-download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(184, 145, 255, 0.25);
}

.cta-trust-badges {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ==========================================
   INTERACTIVE CLEAN DEMO
   ========================================== */
.clean-demo-section {
    padding: 7rem 0 5rem;
    position: relative;
    z-index: 2;
}

.clean-demo-wrapper {
    max-width: 100%;
    margin: 0 auto;
}

.clean-demo-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 20px;
    padding: 1.75rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Split layout — two cards side by side */
.demo-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

/* Dual visualization layout (kept for compat, hidden now) */
.demo-dual-viz {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.25rem;
    order: 2;
}

.demo-viz-panel {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.demo-viz-label {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-secondary);
    padding-left: 2px;
}

.demo-visualization {
    position: relative;
    width: 100%;
    height: 240px;
    border-radius: 14px;
    background: var(--bg-deepspace);
    border: 1px solid var(--border-card);
    overflow: hidden;
}

/* File grid nodes */
.demo-file-grid {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 5px;
    padding: 14px;
}

.demo-file-node {
    border-radius: 6px;
    background: rgba(184, 145, 255, 0.04);
    border: 1px solid var(--border-card);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

.demo-file-node svg {
    width: 14px;
    height: 14px;
    color: rgba(184, 145, 255, 0.2);
    transition: all 0.4s ease;
}

/* Junk files — red tinted */
.demo-file-node.junk {
    background: rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.15);
}

.demo-file-node.junk svg {
    color: rgba(239, 68, 68, 0.4);
}

/* Scanning state */
.demo-file-node.scanning {
    border-color: rgba(184, 145, 255, 0.3);
    background: rgba(184, 145, 255, 0.08);
}

.demo-file-node.scanning svg {
    color: rgba(184, 145, 255, 0.5);
}

/* Cleaned junk — shrink and turn green */
.demo-file-node.junk.cleaned {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.25);
    transform: scale(0.85);
}

.demo-file-node.junk.cleaned svg {
    color: rgba(34, 197, 94, 0.6);
}

/* Clean files — glow green */
.demo-file-node.safe {
    background: rgba(34, 197, 94, 0.06);
    border-color: rgba(34, 197, 94, 0.15);
}

.demo-file-node.safe svg {
    color: rgba(34, 197, 94, 0.35);
}

/* Privacy grid: skull traces — orange/red tinted */
.demo-file-node.trace {
    background: rgba(251, 146, 60, 0.08);
    border-color: rgba(251, 146, 60, 0.18);
}

.demo-file-node.trace svg {
    color: rgba(251, 146, 60, 0.45);
}

/* Shield (safe) nodes in privacy grid */
.demo-file-node.shield svg {
    color: rgba(184, 145, 255, 0.25);
}

/* Cleaned trace — turns to shield green */
.demo-file-node.trace.cleaned {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.25);
    transform: scale(0.85);
}

.demo-file-node.trace.cleaned svg {
    color: rgba(34, 197, 94, 0.6);
}

/* Scan beam */
.demo-scan-beam {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(184, 145, 255, 0.04), rgba(184, 145, 255, 0.06), rgba(184, 145, 255, 0.04), transparent);
    pointer-events: none;
    z-index: 5;
    opacity: 0;
}

.demo-scan-beam.active {
    opacity: 1;
    animation: scan-sweep 2.5s ease-in-out;
}

@keyframes scan-sweep {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Scanning border pulse on viz panels */
.demo-visualization.scanning-active {
    border-color: rgba(184, 145, 255, 0.2);
    box-shadow: 0 0 12px rgba(184, 145, 255, 0.05);
    animation: viz-pulse 1.5s ease-in-out infinite;
}

@keyframes viz-pulse {
    0%, 100% { box-shadow: 0 0 12px rgba(184, 145, 255, 0.05); }
    50% { box-shadow: 0 0 20px rgba(184, 145, 255, 0.08); }
}

.demo-visualization.cleaning-active {
    border-color: rgba(34, 197, 94, 0.25);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.06), inset 0 0 15px rgba(34, 197, 94, 0.03);
    animation: viz-pulse-green 1.2s ease-in-out infinite;
}

@keyframes viz-pulse-green {
    0%, 100% { box-shadow: 0 0 20px rgba(34, 197, 94, 0.06), inset 0 0 15px rgba(34, 197, 94, 0.03); }
    50% { box-shadow: 0 0 30px rgba(34, 197, 94, 0.12), inset 0 0 20px rgba(34, 197, 94, 0.05); }
}

.demo-visualization.done-active {
    border-color: rgba(34, 197, 94, 0.3);
    animation: none;
}

/* Horizontal scanline that sweeps across the grid */
.demo-scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(184, 145, 255, 0.4) 30%, rgba(184, 145, 255, 0.6) 50%, rgba(184, 145, 255, 0.4) 70%, transparent 100%);
    z-index: 6;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 0 8px 1px rgba(184, 145, 255, 0.15);
}

.demo-scanline.active {
    opacity: 1;
    animation: scanline-sweep 1.8s linear infinite;
}

.demo-scanline.clean-mode {
    background: linear-gradient(90deg, transparent 0%, rgba(34, 197, 94, 0.5) 30%, rgba(34, 197, 94, 0.8) 50%, rgba(34, 197, 94, 0.5) 70%, transparent 100%);
    box-shadow: 0 0 12px 2px rgba(34, 197, 94, 0.25), 0 0 30px 4px rgba(34, 197, 94, 0.08);
}

@keyframes scanline-sweep {
    0% { top: 0; }
    100% { top: 100%; }
}

/* Junk detected shake */
.demo-file-node.junk-detected {
    animation: node-shake 0.4s ease;
}

@keyframes node-shake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-3px) rotate(-2deg); }
    40% { transform: translateX(3px) rotate(2deg); }
    60% { transform: translateX(-2px) rotate(-1deg); }
    80% { transform: translateX(2px) rotate(1deg); }
}

/* Floating size popup */
.demo-float-popup {
    position: absolute;
    font-family: 'Outfit', monospace;
    font-size: 0.65rem;
    font-weight: 700;
    color: #22c55e;
    pointer-events: none;
    z-index: 15;
    white-space: nowrap;
    opacity: 0;
    animation: float-up 0.9s ease forwards;
    text-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
}

@keyframes float-up {
    0% { opacity: 1; transform: translateY(0) scale(1); }
    70% { opacity: 1; transform: translateY(-22px) scale(1.05); }
    100% { opacity: 0; transform: translateY(-32px) scale(0.9); }
}

/* Clean particle burst */
.demo-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 14;
    opacity: 0;
    animation: particle-burst 0.6s ease-out forwards;
}

@keyframes particle-burst {
    0% { opacity: 1; transform: translate(0, 0) scale(1); }
    100% { opacity: 0; transform: translate(var(--px), var(--py)) scale(0); }
}

/* Card-level glow during scan */
.clean-demo-card.active-glow {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border-color: rgba(184, 145, 255, 0.15);
}

.clean-demo-card.done-glow {
    box-shadow: 0 0 50px rgba(34, 197, 94, 0.06), 0 0 100px rgba(34, 197, 94, 0.03);
    border-color: rgba(34, 197, 94, 0.2);
    transition: all 1s ease;
}

/* Live counter overlay - bottom right of each grid */
.demo-live-counter {
    position: absolute;
    bottom: 8px;
    right: 8px;
    font-family: 'Outfit', monospace;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(10, 10, 10, 0.85);
    padding: 0.25rem 0.55rem;
    border-radius: 6px;
    border: 1px solid var(--border-card);
    z-index: 12;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
}

.demo-live-counter.visible {
    opacity: 1;
}

.demo-live-counter.done {
    color: #22c55e;
    border-color: rgba(34, 197, 94, 0.2);
}

/* Interactive controls panel */
.demo-controls-panel {
    background: var(--bg-deepspace);
    border: 1px solid var(--border-card);
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
}

.demo-controls-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-dim);
    margin-bottom: 1rem;
}

/* Toggle cards row */
.demo-toggle-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.65rem;
    margin-bottom: 1.15rem;
}

.demo-toggle-row-half {
    grid-template-columns: repeat(2, 1fr);
}

.demo-toggle-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 10px;
    padding: 0.75rem 0.65rem 0.65rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.demo-toggle-card:hover {
    border-color: var(--border-card-hover);
    background: var(--bg-card-hover);
}

.demo-toggle-card.active {
    border-color: var(--border-card-hover);
    background: rgba(184, 145, 255, 0.04);
}

.demo-toggle-card.active .demo-toggle-card-icon {
    color: var(--primary);
}

.demo-toggle-card-icon {
    color: var(--text-dim);
    transition: color 0.3s ease;
    display: flex;
}

.demo-toggle-card-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
}

/* Toggle switch */
.demo-toggle-switch {
    position: relative;
    width: 36px;
    height: 20px;
    flex-shrink: 0;
}

.demo-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.demo-toggle-slider {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.demo-toggle-slider::before {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    left: 3px;
    top: 3px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.demo-toggle-switch input:checked + .demo-toggle-slider {
    background: var(--primary);
}

.demo-toggle-switch input:checked + .demo-toggle-slider::before {
    transform: translateX(16px);
    background: #fff;
}

/* Controls row — slider + dropdown */
.demo-controls-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.15rem;
}

.demo-control-group {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.demo-control-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-dim);
    letter-spacing: 0.02em;
}

/* Range slider */
.demo-slider-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.demo-range-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    outline: none;
    cursor: pointer;
}

.demo-range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary);
    border: 2px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.demo-range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 8px rgba(184, 145, 255, 0.3);
}

.demo-range-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary);
    border: 2px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
}

.demo-slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.62rem;
    color: var(--text-dim);
    font-weight: 500;
}

.demo-slider-labels span {
    opacity: 0.5;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.demo-slider-labels span.active-label {
    opacity: 1;
    color: var(--primary);
    font-weight: 700;
}

/* Custom select dropdown */
.demo-select-wrap {
    position: relative;
}

.demo-select {
    width: 100%;
    padding: 0.55rem 2rem 0.55rem 0.75rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 8px;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    transition: border-color 0.2s ease;
}

.demo-select:hover,
.demo-select:focus {
    border-color: var(--border-card-hover);
}

.demo-select option {
    background: var(--bg-card);
    color: var(--text-primary);
}

.demo-select-arrow {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-dim);
    pointer-events: none;
}

/* Live stats bar */
.demo-live-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 10px;
    padding: 0.65rem 0.5rem;
}

.demo-live-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    flex: 1;
    min-width: 0;
}

.demo-live-stat-value {
    font-family: 'Outfit', monospace;
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    transition: color 0.4s ease;
    white-space: nowrap;
}

.demo-live-stat-value.pulse {
    animation: stat-pulse 0.5s ease;
}

@keyframes stat-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.12); color: var(--primary); }
    100% { transform: scale(1); }
}

.demo-live-stat-label {
    font-size: 0.62rem;
    font-weight: 500;
    color: var(--text-dim);
    white-space: nowrap;
}

.demo-live-stat-divider {
    width: 1px;
    height: 28px;
    background: var(--border-card);
    flex-shrink: 0;
}

/* Disabled state during scan */
.demo-controls-panel.disabled {
    opacity: 0.5;
    pointer-events: none;
}

/* Center action */
.demo-center-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    gap: 0.75rem;
    transition: opacity 0.5s ease, max-height 0.5s ease;
    padding: 0.5rem 0 0.25rem;
}

.demo-center-action.scanning {
    opacity: 0.4;
    pointer-events: none;
}

.demo-clean-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 2rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    background: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.35s ease;
    -webkit-appearance: none;
    appearance: none;
}

.demo-clean-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 145, 255, 0.25);
}

.demo-clean-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.demo-hint {
    font-size: 0.8rem;
    color: var(--text-dim);
    margin: 0;
}

/* Progress ring */
.demo-progress-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    transform: translate(-50%, -50%) rotate(-90deg);
    z-index: 8;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.demo-progress-ring.active {
    opacity: 1;
}

/* Results panel */
.demo-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    opacity: 0;
    transform: translateY(16px);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
    max-height: 0;
    overflow: hidden;
}

.demo-results.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    max-height: 300px;
    margin-bottom: 0.5rem;
}

.demo-result-item {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 12px;
    padding: 1rem 1.15rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.demo-result-item:nth-child(1) { transition-delay: 0.1s; }
.demo-result-item:nth-child(2) { transition-delay: 0.2s; }
.demo-result-item:nth-child(3) { transition-delay: 0.3s; }
.demo-result-item:nth-child(4) { transition-delay: 0.4s; }

.demo-result-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(184, 145, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.demo-result-info {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.demo-result-label {
    font-size: 0.82rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.demo-result-value {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.demo-result-bar-track {
    width: 100%;
    height: 4px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

.demo-result-bar {
    height: 100%;
    width: 0;
    border-radius: 4px;
    background: var(--primary);
    transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ==========================================
   SECTION DIVIDERS
   ========================================== */
.section-divider {
    width: 100%;
    max-width: 600px;
    height: 1px;
    margin: 0 auto;
    background: linear-gradient(90deg, transparent, var(--border-card), transparent);
    border: none;
    position: relative;
    z-index: 2;
}

/* ==========================================
   FOOTER
   ========================================== */
.footermenu {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border-card);
    position: relative;
    z-index: 2;
    background: var(--bg-deepspace);
}

.footermenu::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, var(--bg-deepspace) 0%, transparent 100%);
    pointer-events: none;
}

.footer-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.footer-brand-block {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.footer-logo-link {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
    display: inline-block;
}

.footer-logo-link:hover {
    opacity: 0.8;
}

.footer-copyright-text {
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--text-dim);
    white-space: nowrap;
}

.footer-tagline {
    font-size: 0.82rem;
    color: var(--text-dim);
    line-height: 1.65;
    margin: 0;
}

.footer-columns {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-wrap: wrap;
    margin-left: auto;
}

.footer-col {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.footer-col-title {
    display: none;
}

.footer-col a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 400;
    padding: 0.35rem 0.65rem;
    border-radius: 8px;
    white-space: nowrap;
}

.footer-col a:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.06);
}

/* Separator dot between footer link groups */
.footer-col + .footer-col::before {
    content: '·';
    color: var(--text-dim);
    font-size: 0.9rem;
    opacity: 0.4;
}

/* Footer bottom bar */
.footer-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    border-top: 1px solid var(--border-card);
}

.footer-copyright {
    font-size: 0.72rem;
    color: var(--text-dim);
    margin: 0;
    font-weight: 400;
}

.footer-bar-social {
    display: flex;
    align-items: center;
    gap: 0.15rem;
}

.footer-bar-social a {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    text-decoration: none;
}

.footer-bar-social a:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.06);
}

.footer-bar-social svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .comparison-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 968px) {
    .mini-showcase { min-height: 380px; padding: 3rem 2rem; }
    .showcase-carousel { height: 340px; }
    .showcase-item.left, .showcase-item.right { display: none; }

    .showcase-grid-reverse .showcase-content { order: 2; }
    .showcase-grid-reverse .showcase-image-wrapper { order: 1; }

    .showcase-title { font-size: 2rem; }

    .feature-full-showcase .showcase-grid,
    .feature-full-showcase .showcase-grid.showcase-grid-reverse {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    body { padding-top: 64px; }

    .navbar { height: 64px; }
    .navbar.scrolled { height: 52px; }
    .nav-links { gap: 0; font-size: 0.8rem; }
    .nav-link { padding: 0.4rem 0.5rem; font-size: 0.78rem; }
    .navbar-brand { font-size: 1.1rem; }
    .nav-social a { width: 28px; height: 28px; }
    .nav-social svg { width: 14px; height: 14px; }

    .hero-section { padding: 5rem 1rem 3rem; }
    .hero-title { font-size: 2.2rem; letter-spacing: -1px; }
    .hero-description { font-size: 1rem; }

    .comparison-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .pricing-card-featured { order: -1; }

    .qna-section { padding: 4rem 1rem; }
    .qna-grid { grid-template-columns: 1fr; }

    .cta-section-new { min-height: 600px; padding: 5rem 1rem; }
    .cta-title-new { font-size: 2rem; letter-spacing: -1px; }

    .cta-trust-badges { flex-direction: column; gap: 1rem; }

    .footer-content { flex-direction: column; gap: 1rem; align-items: center; }
    .footer-brand-block { text-align: center; }
    .footer-columns { margin-left: 0; justify-content: center; }
    .footer-col { flex-wrap: wrap; justify-content: center; }

    .clean-demo-card { padding: 1.25rem; }
    .demo-split-layout { grid-template-columns: 1fr; }
    .demo-dual-viz { grid-template-columns: 1fr; }
    .demo-visualization { height: 180px; }
    .demo-file-grid { grid-template-columns: repeat(5, 1fr); grid-template-rows: repeat(4, 1fr); gap: 4px; padding: 10px; }
    .demo-results { grid-template-columns: 1fr; }
    .demo-result-value { font-size: 1.1rem; }
    .demo-toggle-row { grid-template-columns: repeat(2, 1fr); }
    .demo-toggle-row-half { grid-template-columns: repeat(2, 1fr); }
    .demo-live-stats { flex-wrap: wrap; gap: 0.5rem; }
    .demo-live-stat-divider { display: none; }
    .demo-live-stat { flex: 0 0 calc(50% - 0.5rem); }
    .demo-controls-panel { padding: 1rem; }
}

@media (max-width: 576px) {
    .container { padding: 0 1rem; }
    .comparison-section { padding: 3rem 0; }
}
