/* ========== RESET & BASE ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --bg-primary: #0D1B2A;
    --bg-secondary: #112240;
    --bg-card: rgba(17, 34, 64, 0.6);
    --text-primary: #FFFFFF;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;
    --accent-blue: #3B82F6;
    --accent-teal: #06B6D4;
    --accent-orange: #F97316;
    --gradient-accent: linear-gradient(135deg, #3B82F6, #06B6D4, #F97316);
    --gradient-accent-r: linear-gradient(135deg, #F97316, #06B6D4, #3B82F6);
    --glass-bg: rgba(17, 34, 64, 0.5);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-hover: rgba(255, 255, 255, 0.15);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-pill: 9999px;
    --nav-height: 72px;
    --max-width: 1200px;
    --transition: 0.3s ease;
}
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ========== UTILITIES ========== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.gradient-text {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}
.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 48px;
}
.text-center { text-align: center; }

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-pill);
    padding: 12px 28px;
    transition: all var(--transition);
    white-space: nowrap;
}
.btn-gradient {
    background: var(--gradient-accent);
    color: #fff;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}
.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.45);
}
.btn-outline {
    border: 1.5px solid var(--glass-border-hover);
    color: var(--text-primary);
    background: transparent;
}
.btn-outline:hover {
    border-color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.05);
    transform: translateY(-2px);
}
.btn-white {
    background: #fff;
    color: var(--bg-primary);
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(255,255,255,0.15);
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255,255,255,0.25);
}
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

/* ========== SCROLL ANIMATIONS ========== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }
.fade-up-delay-5 { transition-delay: 0.5s; }

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1000;
    background: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all var(--transition);
}
.navbar--scrolled {
    background: #FFFFFF;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.navbar-logo img { height: 38px; width: auto; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--bg-primary);
    transition: all var(--transition);
}
.nav-links a:hover { color: var(--accent-blue); }
.nav-links a.active {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 16px;
    font-size: 0.8rem;
    font-weight: 600;
}
.lang-link {
    color: var(--text-muted);
    transition: color var(--transition);
}
.lang-link:hover, .lang-link.active {
    color: var(--bg-primary);
}
.lang-divider {
    color: var(--glass-border-hover);
}
.nav-cta { margin-left: 16px; }
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    z-index: 1001;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--bg-primary);
    border-radius: 2px;
    transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}
.hero-orb-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3), transparent 70%);
    top: -10%; left: -10%;
    animation: float1 10s ease-in-out infinite alternate;
}
.hero-orb-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.25), transparent 70%);
    bottom: -5%; right: -5%;
    animation: float2 12s ease-in-out infinite alternate;
}
.hero-orb-3 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.2), transparent 70%);
    top: 30%; right: 20%;
    animation: float3 8s ease-in-out infinite alternate;
}
@keyframes float1 { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(60px, 40px) scale(1.1); } }
@keyframes float2 { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(-50px, -30px) scale(1.15); } }
@keyframes float3 { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(30px, -50px) scale(0.9); } }

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(59, 130, 246, 0.3);
    background: rgba(59, 130, 246, 0.08);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent-blue);
    margin-bottom: 32px;
}
.hero-badge svg { width: 16px; height: 16px; }
.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}
.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.7;
}
.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 64px;
}

/* Dashboard Mockup */
.hero-mockup {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    border-radius: var(--radius);
    border: 1px solid var(--glass-border);
    background: rgba(17, 34, 64, 0.7);
    backdrop-filter: blur(20px);
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.4), 0 0 60px rgba(59, 130, 246, 0.08);
}
.mockup-titlebar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--glass-border);
}
.mockup-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
}
.mockup-dot--red { background: #FF5F57; }
.mockup-dot--yellow { background: #FFBD2E; }
.mockup-dot--green { background: #28CA41; }
.mockup-titlebar-text {
    margin-left: 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
}
.mockup-body { padding: 0; }
.mockup-header {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 0.8fr;
    padding: 12px 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--glass-border);
}
.mockup-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 0.8fr;
    padding: 14px 20px;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    color: var(--text-secondary);
    opacity: 0;
    animation: slideInRow 0.5s ease forwards;
}
.mockup-row:nth-child(2) { animation-delay: 0.3s; }
.mockup-row:nth-child(3) { animation-delay: 0.6s; }
.mockup-row:nth-child(4) { animation-delay: 0.9s; }
.mockup-row:nth-child(5) { animation-delay: 1.2s; }
.mockup-row.highlight {
    background: rgba(59, 130, 246, 0.06);
    border-left: 3px solid var(--accent-blue);
}
.mockup-email { color: var(--text-primary); font-weight: 500; }
.mockup-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
}
.status-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
}
.status-dot--green { background: #22C55E; }
.status-dot--orange { background: var(--accent-orange); }
.status-dot--blue { background: var(--accent-blue); }
@keyframes slideInRow {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ========== LOGOS BAR ========== */
.logos-section {
    padding: 60px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}
.logos-section .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 32px;
}
.marquee {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.marquee-track {
    display: flex;
    animation: marquee 35s linear infinite;
    width: max-content;
}
.marquee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 40px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    white-space: nowrap;
    flex-shrink: 0;
}
.marquee-item svg { width: 28px; height: 28px; opacity: 0.6; }
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========== FEATURES BENTO ========== */
.features { padding: 120px 0; }
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.bento-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 36px 32px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    padding: 1px;
    background: var(--gradient-accent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity var(--transition);
}
.bento-card:hover::before { opacity: 1; }
.bento-card:hover {
    transform: translateY(-4px);
    background: rgba(17, 34, 64, 0.7);
}
.bento-card--wide { grid-column: span 2; }
.bento-icon {
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(59, 130, 246, 0.1);
    margin-bottom: 20px;
}
.bento-icon svg { width: 24px; height: 24px; }
.bento-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.bento-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========== HOW IT WORKS ========== */
.how-it-works { padding: 120px 0; }
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}
.steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(16.66% + 24px);
    right: calc(16.66% + 24px);
    height: 2px;
    border-top: 2px dashed rgba(255,255,255,0.1);
}
.step {
    text-align: center;
    position: relative;
}
.step-number {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 24px;
    position: relative;
    z-index: 2;
}
.step h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.step p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 280px;
    margin: 0 auto;
}

/* ========== INTEGRATIONS ========== */
.integrations { padding: 120px 0; }
.integrations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.integration-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 24px 20px;
    text-align: center;
    transition: all var(--transition);
}
.integration-card:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-2px);
    background: rgba(17, 34, 64, 0.7);
}
.integration-icon {
    width: 48px; height: 48px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
}
.integration-icon svg { width: 26px; height: 26px; }
.integration-card h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.integration-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #22C55E;
    background: rgba(34, 197, 94, 0.1);
    padding: 4px 10px;
    border-radius: var(--radius-pill);
}

/* ========== PRICING ========== */
.pricing { padding: 120px 0; }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}
.pricing-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 40px 36px;
    position: relative;
    transition: all var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card--pro {
    background: linear-gradient(var(--bg-secondary), var(--bg-secondary)) padding-box,
                var(--gradient-accent) border-box;
    border: 2px solid transparent;
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.12), 0 0 80px rgba(6, 182, 212, 0.06);
}
.pricing-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: var(--radius-pill);
    white-space: nowrap;
}
.pricing-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.pricing-card .price {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 4px;
}
.pricing-card .price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
}
.pricing-card .price-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}
.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}
.pricing-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.pricing-feature svg { width: 18px; height: 18px; flex-shrink: 0; }
.pricing-feature.disabled { opacity: 0.4; }

/* ========== TESTIMONIALS ========== */
.testimonials { padding: 120px 0; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 32px;
    transition: all var(--transition);
}
.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: var(--glass-border-hover);
}
.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}
.testimonial-stars svg { width: 18px; height: 18px; fill: #FBBF24; }
.testimonial-card blockquote {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; }
.testimonial-role { font-size: 0.8rem; color: var(--text-muted); }

/* ========== FAQ ========== */
.faq { padding: 120px 0; }
.faq-list {
    max-width: 760px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--glass-border);
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    transition: color var(--transition);
}
.faq-question:hover { color: var(--accent-teal); }
.faq-question svg {
    width: 20px; height: 20px;
    flex-shrink: 0;
    transition: transform var(--transition);
    color: var(--text-muted);
}
.faq-item.active .faq-question svg { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p {
    padding-bottom: 24px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========== CTA BANNER ========== */
.cta-banner { padding: 120px 0; }
.cta-banner-inner {
    background: var(--gradient-accent);
    border-radius: 24px;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner-inner::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    top: -100px; right: -100px;
    filter: blur(60px);
}
.cta-banner-inner h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    position: relative;
}
.cta-banner-inner p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 36px;
    position: relative;
}

/* ========== FOOTER ========== */
.footer {
    padding: 80px 0 40px;
    background: #FFFFFF;
    color: var(--bg-primary);
    border-top: 1px solid rgba(0,0,0,0.1);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand img { height: 36px; margin-bottom: 16px; }
.footer-brand p {
    font-size: 0.9rem;
    color: #475569;
    max-width: 280px;
    line-height: 1.6;
}
.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--bg-primary);
    margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
    font-size: 0.9rem;
    color: #475569;
    transition: color var(--transition);
}
.footer-col a:hover { color: var(--accent-blue); }
.footer-bottom {
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #64748B;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-links {
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        flex-direction: column;
        justify-content: center;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        gap: 28px;
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--transition);
    }
    .nav-links--open { opacity: 1; pointer-events: all; }
    .nav-links a { font-size: 1.2rem; }
    .nav-cta { margin-left: 0; }

    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1.05rem; }
    .hero-buttons { flex-direction: column; gap: 12px; }
    .hero-mockup { display: none; }

    .section-title { font-size: 2rem; }

    .bento-grid { grid-template-columns: 1fr 1fr; }
    .bento-card--wide { grid-column: span 2; }

    .steps { grid-template-columns: 1fr; gap: 40px; }
    .steps::before { display: none; }

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

    .pricing-grid { grid-template-columns: 1fr; max-width: 440px; }

    .testimonials-grid { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

    .cta-banner-inner h2 { font-size: 1.8rem; }
    .cta-banner-inner { padding: 60px 24px; }
}
@media (max-width: 480px) {
    .bento-grid { grid-template-columns: 1fr; }
    .bento-card--wide { grid-column: span 1; }
    .integrations-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2rem; }
    .section-title { font-size: 1.65rem; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========== DEMO APP ========== */
.demo-body {
    background: radial-gradient(circle at top left, #0D1B2A 0%, #1B263B 100%);
    min-height: 100vh;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.demo-app {
    width: 100%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    min-height: 800px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}
.demo-sidebar {
    width: 260px;
    background: rgba(0, 0, 0, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
}
.demo-sidebar-header {
    background: #fff;
    padding: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
}
.demo-logo { text-align: center; }
.demo-logo img { height: 48px; filter: none; transition: transform 0.3s ease; }
.demo-logo img:hover { transform: scale(1.05); }
.demo-sidebar-nav { padding: 0 20px 24px; flex: 1; }
.demo-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    color: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    margin-bottom: 6px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}
.demo-nav-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}
.demo-nav-item.active {
    background: var(--gradient-accent);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
}
.demo-content {
    flex: 1;
    padding: 40px;
    overflow-y: auto;
    position: relative;
    max-height: 800px;
}
.demo-view { display: none; width: 100%; }
.demo-view.active { display: block; animation: fadeIn 0.4s ease-out; }
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.demo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}
.demo-header h2 { color: #fff; font-size: 1.4rem; }
.demo-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}
.demo-stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 16px;
}
.demo-stat-label { color: rgba(255, 255, 255, 0.4); font-size: 0.8rem; margin-bottom: 6px; }
.demo-stat-value { color: #fff; font-size: 1.5rem; font-weight: 700; }

.demo-grid {
    display: grid;
    grid-template-columns: 2.5fr 1.5fr;
    gap: 24px;
    margin-bottom: 32px;
}
.demo-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px;
    border-radius: 20px;
}
.demo-card h3 { color: #fff; font-size: 1rem; margin-bottom: 20px; }
.demo-chart-mock {
    height: 160px;
    display: flex;
    align-items: flex-end;
    gap: 12px;
    padding-top: 20px;
}
.demo-bar {
    flex: 1;
    background: var(--gradient-accent);
    border-radius: 4px 4px 0 0;
    animation: barUp 1s ease-out forwards;
}
@keyframes barUp {
    from { height: 0; opacity: 0; }
    to { opacity: 1; }
}

.demo-table-container { overflow-x: auto; }
.demo-table {
    width: 100%;
    border-collapse: collapse;
    color: #fff;
    font-size: 0.85rem;
}
.demo-table th {
    text-align: left;
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.demo-table td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.demo-icon { width: 18px; height: 18px; color: rgba(255, 255, 255, 0.5); }
.demo-badge {
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    background: rgba(59, 130, 246, 0.1);
    color: #60A5FA;
}
.demo-badge--success { background: rgba(34, 197, 94, 0.1); color: #4ADE80; }

.demo-btn-sm {
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.demo-btn-sm:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: translateY(-1px);
}
.demo-btn-sm--primary {
    background: var(--gradient-accent);
    color: #fff;
    border: none;
}
.demo-btn-sm--primary:hover {
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.demo-table tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

/* Form Interactivity */
.demo-toggle-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.demo-toggle-group:last-child { border-bottom: none; }
.demo-toggle {
    width: 44px;
    height: 22px;
    background: rgba(255,255,255,0.1);
    border-radius: 11px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s ease;
}
.demo-toggle.on { background: var(--gradient-accent); }
.demo-toggle::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: transform 0.3s ease;
}
.demo-toggle.on::after { transform: translateX(22px); }

.demo-input-group {
    margin-bottom: 24px;
}
.demo-label {
    display: block;
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    margin-bottom: 8px;
}
.demo-input {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 12px 16px;
    border-radius: 10px;
    color: #fff;
    font-size: 0.9rem;
}



@media (max-width: 1024px) {
    .demo-grid { grid-template-columns: 1fr; }
    .demo-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .demo-sidebar { display: none; }
    .demo-stats { grid-template-columns: 1fr; }
}

