:root {
    --primary-color: #0284c7;
    --secondary-color: #6366f1;
    --bg-color: #f8f9fa;
    --card-bg: #ffffff;
    --text-color: #1e293b;
    --text-muted: #64748b;
    --glass-border: #e2e8f0;
    --gradient-bg: linear-gradient(135deg, #f8f9fa 0%, #e2e8f0 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    color-scheme: light;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.no-flex-gap .logo > * + * {
    margin-left: 10px;
}

.no-flex-gap .nav-menu > li + li {
    margin-left: 30px;
}

.no-flex-gap .primary-btn > * + *,
.no-flex-gap .secondary-btn > * + * {
    margin-left: 10px;
}

.no-flex-gap .hero-actions {
    gap: 0;
}

.no-flex-gap .hero-actions > a {
    margin: 7px;
}

.no-flex-gap .hero-core {
    gap: 0;
}

.no-flex-gap .hero-core-item {
    margin: 6px 11px;
}

.no-flex-gap .hero-core-item i {
    margin-right: 9px;
}

.no-flex-gap .hero-badge i {
    margin-right: 8px;
}

.no-flex-gap .chip-list {
    gap: 0;
}

.no-flex-gap .chip {
    margin: 5px;
}

.no-flex-gap .chip i {
    margin-right: 8px;
}

.no-flex-gap .feature-demo-stage .demo-panel-title > * + * {
    margin-left: 8px;
}

.no-flex-gap .feature-demo-stage .demo-phone-tabs > * + * {
    margin-left: 8px;
}

.no-flex-gap .feature-demo-stage .demo-mini-pill i {
    margin-right: 8px;
}

.no-flex-gap .feature-demo-stage .demo-consult-sidebar {
    gap: 0;
}

.no-flex-gap .feature-demo-stage .demo-consult-sidebar > * + * {
    margin-top: 10px;
}

.no-flex-gap .feature-demo-stage .demo-consult-side-btn i,
.no-flex-gap .feature-demo-stage .demo-consult-side-meta i {
    margin-right: 10px;
}

.no-flex-gap .feature-demo-stage .demo-consult-bubble i {
    margin-right: 8px;
}

.no-flex-gap .feature-demo-stage .demo-consult-recommend-btn i {
    margin-right: 10px;
}

.no-flex-gap .feature-demo-stage .demo-consult-tags {
    gap: 0;
}

.no-flex-gap .feature-demo-stage .demo-consult-tag {
    margin: 4px;
}

.no-flex-gap .feature-demo-stage .demo-consult-lawyer-top {
    gap: 0;
}

.no-flex-gap .feature-demo-stage .demo-consult-lawyer-top > * + * {
    margin-left: 10px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid var(--glass-border);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo .badge {
    font-size: 0.7rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 400;
    border: 1px solid rgba(37, 99, 235, 0.3);
}


.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: 0.3s;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px; /* Offset for navbar */
    padding-bottom: 60px;
    overflow: hidden;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* Behind content but in front of bg */
    opacity: 0.6;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #e0f2fe 0%, var(--bg-color) 70%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 1;
    width: 100%;
}

.hero h1 {
    font-size: 3.5rem;
    margin-top: 50px;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #0f172a, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero .subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 22px;
    letter-spacing: 2px;
}

.hero-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 auto 24px;
    max-width: 980px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--glass-border);
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
    backdrop-filter: blur(6px);
}

.hero-badge i {
    color: var(--primary-color);
}

.hero-core {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px 22px;
    margin: 6px auto 40px;
    max-width: 980px;
    font-weight: 900;
    font-size: 1.08rem;
    line-height: 1.2;
    letter-spacing: 0.2px;
    color: rgba(15, 23, 42, 0.92);
    min-height: 44px;
}

.hero-core-item {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    opacity: 0;
    transform: translateY(10px);
    white-space: nowrap;
    animation: heroCoreFloat 20s infinite;
}

.hero-core-item i {
    color: var(--primary-color);
    width: 18px;
    text-align: center;
}

.hero-core-item.item-1 { animation-delay: 0s; }
.hero-core-item.item-2 { animation-delay: 2.5s; }
.hero-core-item.item-3 { animation-delay: 5s; }
.hero-core-item.item-4 { animation-delay: 7.5s; }
.hero-core-item.item-5 { animation-delay: 10s; }

@keyframes heroCoreFloat {
    0% { opacity: 0; transform: translateY(12px); }
    12% { opacity: 1; transform: translateY(0); }
    64% { opacity: 1; transform: translateY(0); }
    82% { opacity: 0; transform: translateY(-12px); }
    100% { opacity: 0; transform: translateY(-12px); }
}

@media (prefers-reduced-motion: reduce) {
    .hero-core-item {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.primary-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 700;
    border: 1px solid transparent;
    transition: 0.3s;
}

.primary-btn {
    background: var(--primary-color);
    border-color: rgba(2, 132, 199, 0.4);
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(2, 132, 199, 0.18);
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(2, 132, 199, 0.25);
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.8);
    border-color: var(--glass-border);
    color: var(--text-color);
}

.secondary-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(2, 132, 199, 0.35);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.hero-media {
    max-width: 980px;
    margin: 0 auto;
}

.hero-metrics {
    max-width: 980px;
    margin: 34px auto 0;
    padding-top: 26px;
    border-top: 1px solid rgba(226, 232, 240, 0.9);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 180px));
    gap: 18px;
    align-items: stretch;
    justify-content: center;
}

.metric-item {
    padding: 6px 6px;
    text-align: center;
}

.metric-value {
    font-weight: 900;
    font-size: 2.05rem;
    letter-spacing: 0.2px;
    color: rgba(15, 23, 42, 0.92);
}

.metric-label {
    margin-top: 6px;
    font-size: 0.92rem;
    color: rgba(100, 116, 139, 0.95);
    font-weight: 700;
}

.metric-value {
    font-feature-settings: "tnum" 1, "lnum" 1;
}

.metric-value {
    line-height: 1.12;
}

.metric-label {
    line-height: 1.3;
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top, rgba(2, 132, 199, 0.10) 0%, rgba(255, 255, 255, 0.9) 60%, rgba(255, 255, 255, 0.8) 100%);
}

.video-placeholder-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 22px;
    text-align: center;
    color: var(--text-muted);
}

.video-placeholder-inner i {
    font-size: 2.2rem;
    color: var(--primary-color);
}

.video-placeholder-title {
    font-weight: 700;
    color: var(--text-color);
    font-size: 1.1rem;
}

.video-placeholder-subtitle {
    font-size: 0.95rem;
}

.feature-demo-stage {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 22px;
    border: 1px solid var(--glass-border);
    background: radial-gradient(circle at top, rgba(2, 132, 199, 0.10) 0%, rgba(255, 255, 255, 0.92) 62%, rgba(255, 255, 255, 0.85) 100%);
    overflow: hidden;
    position: relative;
}

.video-container.demo-container {
    border-radius: 22px;
}

.video-container.demo-container .feature-demo-stage {
    border: none;
    border-radius: 0;
}

.video-container.demo-container:hover {
    transform: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-demo-stage.fade-in {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.feature-demo-stage.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-demo-stage .demo-header {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    z-index: 2;
}

.feature-demo-stage .demo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(2, 132, 199, 0.22);
    color: var(--text-color);
    font-weight: 700;
    font-size: 0.9rem;
}

.feature-demo-stage .demo-hint {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(226, 232, 240, 0.9);
    padding: 6px 10px;
    border-radius: 999px;
}

.feature-demo-stage .demo-surface {
    position: absolute;
    inset: 0;
    padding: 56px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-demo-stage.no-demo-header .demo-surface {
    padding-top: 16px;
}

.feature-demo-stage.demo-consult.no-demo-header .demo-consult-surface {
    flex: 1;
    min-height: 0;
}

.feature-demo-stage.demo-consult.no-demo-header .demo-consult-web {
    height: 100%;
}

.feature-demo-stage.demo-consult.no-demo-header .demo-consult-main {
    height: 100%;
    min-height: 0;
}

.feature-demo-stage.demo-consult.no-demo-header .demo-consult-chat {
    overflow: hidden;
}

.feature-demo-stage:not(.visible) .anim {
    animation-play-state: paused;
}

.feature-demo-stage.visible .anim {
    animation-play-state: running;
}

.feature-demo-stage .demo-chat {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: flex-end;
}

.feature-demo-stage .demo-bubble {
    max-width: 92%;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    color: var(--text-color);
}

.feature-demo-stage .demo-bubble.user {
    align-self: flex-start;
    border-color: rgba(2, 132, 199, 0.22);
}

.feature-demo-stage .demo-bubble.ai {
    align-self: flex-end;
    border-color: rgba(99, 102, 241, 0.22);
}

.feature-demo-stage .demo-ai-title {
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: rgba(15, 23, 42, 0.82);
}

.feature-demo-stage .demo-ai-step {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 12px;
    background: rgba(248, 250, 252, 0.8);
    border: 1px solid rgba(226, 232, 240, 0.9);
    font-size: 0.9rem;
    color: rgba(30, 41, 59, 0.9);
}

.feature-demo-stage .demo-ai-step i {
    width: 18px;
    text-align: center;
    color: var(--primary-color);
}

.feature-demo-stage .demo-tool-strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.feature-demo-stage .demo-tool {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 10px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(226, 232, 240, 0.9);
    font-weight: 700;
    font-size: 0.85rem;
    color: rgba(30, 41, 59, 0.85);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
}

.feature-demo-stage .demo-tool i {
    color: var(--primary-color);
}

.feature-demo-stage .demo-in-1 {
    opacity: 0;
    transform: translateY(10px);
    animation: demoIn 9.5s infinite;
}

.feature-demo-stage .demo-in-2 {
    opacity: 0;
    transform: translateY(10px);
    animation: demoIn2 9.5s infinite;
}

.feature-demo-stage .demo-agent .step-1 {
    opacity: 0;
    transform: translateY(8px);
    animation: demoStep 9.5s infinite;
    animation-delay: 2.1s;
}

.feature-demo-stage .demo-agent .step-2 {
    opacity: 0;
    transform: translateY(8px);
    animation: demoStep 9.5s infinite;
    animation-delay: 3.2s;
}

.feature-demo-stage .demo-agent .step-3 {
    opacity: 0;
    transform: translateY(8px);
    animation: demoStep 9.5s infinite;
    animation-delay: 4.3s;
}

.feature-demo-stage .demo-agent .demo-tool:nth-child(1) { animation: toolGlow 9.5s infinite; animation-delay: 1.9s; }
.feature-demo-stage .demo-agent .demo-tool:nth-child(2) { animation: toolGlow 9.5s infinite; animation-delay: 2.8s; }
.feature-demo-stage .demo-agent .demo-tool:nth-child(3) { animation: toolGlow 9.5s infinite; animation-delay: 3.6s; }
.feature-demo-stage .demo-agent .demo-tool:nth-child(4) { animation: toolGlow 9.5s infinite; animation-delay: 4.4s; }
.feature-demo-stage .demo-agent .demo-tool:nth-child(5) { animation: toolGlow 9.5s infinite; animation-delay: 5.2s; }
.feature-demo-stage .demo-agent .demo-tool:nth-child(6) { animation: toolGlow 9.5s infinite; animation-delay: 6.0s; }

.feature-demo-stage .demo-cursor-surface {
    display: grid;
    grid-template-columns: 1fr auto 1.15fr;
    gap: 14px;
    align-items: stretch;
}

.feature-demo-stage .demo-panel-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 0.9rem;
    color: rgba(15, 23, 42, 0.82);
    margin-bottom: 10px;
}

.feature-demo-stage .demo-panel-title i {
    color: var(--primary-color);
}

.feature-demo-stage .demo-phone,
.feature-demo-stage .demo-pc {
    border: none;
    border-radius: 0;
    background: transparent;
    padding: 14px 14px 12px;
    box-shadow: none;
    display: flex;
    flex-direction: column;
}

.feature-demo-stage .demo-phone-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 10px;
    border-radius: 14px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    background: rgba(248, 250, 252, 0.85);
    color: rgba(30, 41, 59, 0.88);
    font-weight: 700;
    font-size: 0.86rem;
    margin-bottom: 10px;
    opacity: 0.25;
    transform: translateY(6px);
}

.feature-demo-stage .demo-phone-card i {
    color: var(--primary-color);
    width: 18px;
    text-align: center;
}

.feature-demo-stage .demo-phone-card.phone-1 { animation: phoneStep 9.5s infinite; animation-delay: 1.6s; }
.feature-demo-stage .demo-phone-card.phone-2 { animation: phoneStep 9.5s infinite; animation-delay: 2.8s; }
.feature-demo-stage .demo-phone-card.phone-3 { animation: phoneStep 9.5s infinite; animation-delay: 4.0s; }

.feature-demo-stage .demo-phone-ui {
    position: relative;
    border-radius: 14px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    background: rgba(248, 250, 252, 0.85);
    overflow: hidden;
    min-height: 240px;
    flex: 1;
}

.feature-demo-stage .demo-phone-tabs {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    gap: 8px;
    padding: 8px 8px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(226, 232, 240, 0.9);
}

.feature-demo-stage .demo-phone-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 0.74rem;
    color: rgba(51, 65, 85, 0.9);
    border: 1px solid rgba(226, 232, 240, 0.9);
    background: rgba(248, 250, 252, 0.95);
    opacity: 0.7;
}

.feature-demo-stage .demo-phone-tab.tab-home { animation: cursorTabHome 9.5s infinite; }
.feature-demo-stage .demo-phone-tab.tab-ocr { animation: cursorTabOcr 9.5s infinite; }
.feature-demo-stage .demo-phone-tab.tab-result { animation: cursorTabResult 9.5s infinite; }

.feature-demo-stage .demo-phone-screen {
    position: absolute;
    top: 62px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateY(8px);
}

.feature-demo-stage .demo-phone-screen.screen-home { animation: cursorScreenHome 9.5s infinite; }
.feature-demo-stage .demo-phone-screen.screen-ocr { animation: cursorScreenOcr 9.5s infinite; }
.feature-demo-stage .demo-phone-screen.screen-result { animation: cursorScreenResult 9.5s infinite; }

.feature-demo-stage .demo-phone-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.feature-demo-stage .demo-phone-action {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    justify-content: center;
    padding: 10px 8px;
    border-radius: 14px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    background: rgba(255, 255, 255, 0.75);
    color: rgba(30, 41, 59, 0.9);
    font-weight: 900;
    font-size: 0.72rem;
}

.feature-demo-stage .demo-phone-action i {
    color: var(--primary-color);
    font-size: 1.05rem;
}

.feature-demo-stage .demo-phone-tip {
    border-radius: 14px;
    border: 1px dashed rgba(148, 163, 184, 0.7);
    background: rgba(255, 255, 255, 0.65);
    padding: 10px 10px;
    font-size: 0.78rem;
    font-weight: 800;
    color: rgba(30, 41, 59, 0.88);
    line-height: 1.45;
}

.feature-demo-stage .demo-phone-mini {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
}

.feature-demo-stage .demo-mini-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.feature-demo-stage .demo-mini-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(2, 132, 199, 0.08);
    border: 1px solid rgba(2, 132, 199, 0.2);
    color: rgba(2, 132, 199, 0.95);
    font-weight: 900;
    font-size: 0.74rem;
    justify-content: center;
}

.feature-demo-stage .demo-mini-pill i {
    color: rgba(2, 132, 199, 0.95);
}

.feature-demo-stage .demo-phone-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.feature-demo-stage .demo-phone-title {
    font-weight: 900;
    color: rgba(15, 23, 42, 0.92);
    font-size: 0.86rem;
}

.feature-demo-stage .demo-phone-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.10);
    border: 1px solid rgba(99, 102, 241, 0.22);
    color: rgba(99, 102, 241, 0.92);
    font-weight: 900;
    font-size: 0.72rem;
    white-space: nowrap;
}

.feature-demo-stage .demo-ocr-preview {
    position: relative;
    flex: 1;
    border-radius: 14px;
    border: 1px dashed rgba(148, 163, 184, 0.7);
    background: rgba(255, 255, 255, 0.6);
    overflow: hidden;
}

.feature-demo-stage .demo-ocr-box {
    position: absolute;
    border-radius: 10px;
    border: 2px solid rgba(99, 102, 241, 0.55);
    background: rgba(99, 102, 241, 0.10);
    box-shadow: 0 10px 22px rgba(99, 102, 241, 0.12);
    opacity: 0;
    transform: scale(0.98);
}

.feature-demo-stage .demo-ocr-box.b1 { top: 14%; left: 10%; width: 76%; height: 14%; animation: ocrBoxIn 9.5s infinite; animation-delay: 3.4s; }
.feature-demo-stage .demo-ocr-box.b2 { top: 33%; left: 14%; width: 70%; height: 12%; animation: ocrBoxIn 9.5s infinite; animation-delay: 3.8s; }
.feature-demo-stage .demo-ocr-box.b3 { top: 50%; left: 8%; width: 82%; height: 12%; animation: ocrBoxIn 9.5s infinite; animation-delay: 4.2s; }
.feature-demo-stage .demo-ocr-box.b4 { top: 67%; left: 18%; width: 64%; height: 12%; animation: ocrBoxIn 9.5s infinite; animation-delay: 4.6s; }

.feature-demo-stage .demo-ocr-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.feature-demo-stage .demo-ocr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 10px;
    border-radius: 14px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    background: rgba(255, 255, 255, 0.75);
    color: rgba(51, 65, 85, 0.9);
    font-weight: 900;
    font-size: 0.78rem;
}

.feature-demo-stage .demo-ocr-btn.primary {
    border-color: rgba(2, 132, 199, 0.35);
    background: rgba(2, 132, 199, 0.10);
    color: rgba(2, 132, 199, 0.95);
}

.feature-demo-stage .demo-result-lines {
    border-radius: 14px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    background: rgba(255, 255, 255, 0.7);
    padding: 10px 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.feature-demo-stage .demo-result-line {
    padding: 8px 10px;
    border-radius: 12px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    background: rgba(248, 250, 252, 0.9);
    font-size: 0.78rem;
    font-weight: 800;
    color: rgba(30, 41, 59, 0.88);
}

.feature-demo-stage .demo-result-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.feature-demo-stage .demo-result-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 10px;
    border-radius: 14px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    background: rgba(255, 255, 255, 0.75);
    color: rgba(51, 65, 85, 0.9);
    font-weight: 900;
    font-size: 0.78rem;
}

.feature-demo-stage .demo-result-btn.primary {
    border-color: rgba(2, 132, 199, 0.35);
    background: rgba(2, 132, 199, 0.10);
    color: rgba(2, 132, 199, 0.95);
}

.feature-demo-stage .demo-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    width: 70px;
    color: var(--primary-color);
    font-size: 1.2rem;
    opacity: 0.25;
    transform: translateX(-6px);
    animation: arrowPulse 9.5s infinite;
    animation-delay: 3.8s;
    position: relative;
}

.feature-demo-stage .demo-payload {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(2, 132, 199, 0.10);
    border: 1px solid rgba(2, 132, 199, 0.26);
    color: rgba(2, 132, 199, 0.95);
    font-weight: 900;
    font-size: 0.74rem;
    opacity: 0;
    transform: translateX(-28px) scale(0.96);
    animation-duration: 9.5s;
    animation-iteration-count: infinite;
    white-space: nowrap;
}

.feature-demo-stage .demo-payload.payload-ocr { animation-name: cursorPayloadOcr; }
.feature-demo-stage .demo-payload.payload-image { animation-name: cursorPayloadImage; }
.feature-demo-stage .demo-payload.payload-file { animation-name: cursorPayloadFile; }

.feature-demo-stage .demo-payload i {
    color: rgba(2, 132, 199, 0.95);
}

.feature-demo-stage .demo-doc-attachments {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 2px;
}

.feature-demo-stage .demo-attachment {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 14px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: rgba(255, 255, 255, 0.72);
    color: rgba(51, 65, 85, 0.9);
    font-weight: 900;
    font-size: 0.78rem;
    opacity: 0;
    transform: translateY(8px);
}

.feature-demo-stage .demo-attachment-thumb {
    width: 34px;
    height: 28px;
    border-radius: 10px;
    border: 1px solid rgba(2, 132, 199, 0.20);
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.12), rgba(99, 102, 241, 0.08));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(2, 132, 199, 0.95);
    flex-shrink: 0;
}

.feature-demo-stage .demo-attachment i {
    color: rgba(2, 132, 199, 0.95);
}

.feature-demo-stage .demo-attachment.attachment-image { animation: cursorAttachImage 9.5s infinite; }
.feature-demo-stage .demo-attachment.attachment-file { animation: cursorAttachFile 9.5s infinite; }

.feature-demo-stage .demo-doc {
    border-radius: 14px;
    border: 1px dashed rgba(148, 163, 184, 0.6);
    background: rgba(255, 255, 255, 0.6);
    padding: 12px 12px;
    flex: 1;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
}

.feature-demo-stage .demo-doc-line {
    font-size: 0.92rem;
    color: rgba(30, 41, 59, 0.9);
    opacity: 0;
    transform: translateY(8px);
}

.feature-demo-stage .demo-doc-line.line-1 { animation: docLine 9.5s infinite; animation-delay: 4.2s; }
.feature-demo-stage .demo-doc-line.line-2 { animation: docLine 9.5s infinite; animation-delay: 5.0s; }
.feature-demo-stage .demo-doc-line.line-3 { animation: docLine 9.5s infinite; animation-delay: 5.8s; }

.feature-demo-stage .demo-insert {
    margin-left: 6px;
    font-size: 0.78rem;
    font-weight: 900;
    color: rgba(2, 132, 199, 0.95);
    opacity: 0;
    transform: translateY(6px);
    animation: cursorInsert 9.5s infinite;
    animation-delay: 6.2s;
}

.feature-demo-stage .demo-caret {
    display: inline-block;
    width: 10px;
    height: 1.1em;
    margin-left: 3px;
    border-radius: 2px;
    background: rgba(2, 132, 199, 0.95);
    transform: translateY(2px);
    animation: caretBlink 1s steps(1) infinite;
}

.feature-demo-stage .demo-consult-surface {
    height: 100%;
    display: flex;
    align-items: stretch;
}

.feature-demo-stage .demo-consult-web {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 210px 1fr;
    border-radius: 18px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: rgba(255, 255, 255, 0.80);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.10);
    overflow: hidden;
}

.feature-demo-stage .demo-consult-sidebar {
    border-right: 1px solid rgba(226, 232, 240, 0.95);
    background: rgba(248, 250, 252, 0.86);
    padding: 12px 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-demo-stage .demo-consult-side-title {
    font-weight: 900;
    font-size: 0.84rem;
    color: rgba(15, 23, 42, 0.9);
    padding: 6px 6px;
}

.feature-demo-stage .demo-consult-side-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 12px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: rgba(255, 255, 255, 0.88);
    color: rgba(51, 65, 85, 0.92);
    font-weight: 900;
    font-size: 0.78rem;
}

.feature-demo-stage .demo-consult-side-btn i {
    color: rgba(2, 132, 199, 0.95);
    width: 16px;
    text-align: center;
}

.feature-demo-stage .demo-consult-side-btn.active {
    border-color: rgba(2, 132, 199, 0.30);
    box-shadow: 0 14px 26px rgba(2, 132, 199, 0.10);
}

.feature-demo-stage .demo-consult-side-spacer {
    flex: 1;
}

.feature-demo-stage .demo-consult-side-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 12px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: rgba(255, 255, 255, 0.86);
    color: rgba(100, 116, 139, 0.95);
    font-weight: 900;
    font-size: 0.76rem;
}

.feature-demo-stage .demo-consult-side-meta i {
    width: 16px;
    text-align: center;
    color: rgba(100, 116, 139, 0.95);
}

.feature-demo-stage .demo-consult-main {
    display: grid;
    grid-template-rows: 1fr auto;
    min-width: 0;
    background: radial-gradient(circle at 40% 10%, rgba(2, 132, 199, 0.10) 0%, rgba(255, 255, 255, 0.86) 55%, rgba(255, 255, 255, 0.80) 100%);
}

.feature-demo-stage .demo-consult-chat {
    padding: 14px 14px 6px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: flex-end;
    min-height: 0;
}

.feature-demo-stage .demo-consult-bubble {
    max-width: 86%;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: rgba(255, 255, 255, 0.90);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
    font-weight: 800;
    font-size: 0.82rem;
    color: rgba(30, 41, 59, 0.92);
    opacity: 0;
    transform: translateY(10px);
}

.feature-demo-stage .demo-consult-bubble.ai {
    align-self: flex-start;
}

.feature-demo-stage .demo-consult-bubble.user {
    align-self: flex-end;
    background: rgba(2, 132, 199, 0.95);
    color: #fff;
    border-color: rgba(2, 132, 199, 0.35);
    box-shadow: 0 18px 30px rgba(2, 132, 199, 0.22);
}

.feature-demo-stage .demo-consult-action-row {
    display: flex;
    justify-content: flex-end;
}

.feature-demo-stage .demo-consult-recommend-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(2, 132, 199, 0.95);
    color: #fff;
    font-weight: 900;
    font-size: 0.84rem;
    box-shadow: 0 20px 34px rgba(2, 132, 199, 0.25);
    opacity: 0;
    transform: translateY(10px);
}

.feature-demo-stage .demo-consult-card {
    margin-top: 6px;
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: rgba(255, 255, 255, 0.90);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.10);
    overflow: hidden;
    opacity: 0;
    transform: translateY(12px);
}

.feature-demo-stage .demo-consult-card-title {
    padding: 12px 14px;
    font-weight: 900;
    color: rgba(15, 23, 42, 0.9);
    font-size: 0.86rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.95);
    background: rgba(248, 250, 252, 0.86);
}

.feature-demo-stage .demo-consult-lawyer-list {
    display: flex;
    flex-direction: column;
}

.feature-demo-stage .demo-consult-lawyer-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-top: 1px solid rgba(226, 232, 240, 0.88);
    opacity: 0;
    transform: translateY(10px);
}

.feature-demo-stage .demo-consult-lawyer-item:first-child {
    border-top: none;
}

.feature-demo-stage .demo-consult-avatar {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: #fff;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    flex: 0 0 auto;
}

.feature-demo-stage .demo-consult-avatar.alt {
    background: linear-gradient(135deg, #06b6d4 0%, #0284c7 100%);
}

.feature-demo-stage .demo-consult-avatar.alt2 {
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
}

.feature-demo-stage .demo-consult-avatar.alt3 {
    background: linear-gradient(135deg, #f97316 0%, #f59e0b 100%);
}

.feature-demo-stage .demo-consult-lawyer-info {
    min-width: 0;
    flex: 1;
}

.feature-demo-stage .demo-consult-lawyer-top {
    display: flex;
    align-items: baseline;
    gap: 10px;
    min-width: 0;
}

.feature-demo-stage .demo-consult-lawyer-name {
    font-weight: 900;
    color: rgba(15, 23, 42, 0.9);
    font-size: 0.88rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.feature-demo-stage .demo-consult-lawyer-loc {
    color: rgba(100, 116, 139, 0.95);
    font-weight: 800;
    font-size: 0.78rem;
    white-space: nowrap;
}

.feature-demo-stage .demo-consult-tags {
    margin-top: 6px;
    display: flex;
    gap: 6px;
    overflow: hidden;
}

.feature-demo-stage .demo-consult-tag {
    display: inline-flex;
    padding: 3px 9px;
    border-radius: 999px;
    border: 1px solid rgba(2, 132, 199, 0.20);
    background: rgba(2, 132, 199, 0.06);
    color: rgba(2, 132, 199, 0.95);
    font-weight: 900;
    font-size: 0.74rem;
    white-space: nowrap;
}

.feature-demo-stage .demo-consult-score {
    font-weight: 900;
    font-size: 0.92rem;
    color: rgba(37, 99, 235, 0.95);
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.18);
    padding: 5px 10px;
    border-radius: 10px;
    flex: 0 0 auto;
}

.feature-demo-stage .demo-consult-input {
    padding: 10px 14px 12px;
    border-top: 1px solid rgba(226, 232, 240, 0.95);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: center;
    background: rgba(255, 255, 255, 0.88);
}

.feature-demo-stage .demo-consult-input-box {
    height: 38px;
    border-radius: 12px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: rgba(255, 255, 255, 0.92);
    display: flex;
    align-items: center;
    padding: 0 12px;
    color: rgba(148, 163, 184, 0.95);
    font-weight: 800;
    font-size: 0.82rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.feature-demo-stage .demo-consult-send {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(2, 132, 199, 0.95);
    color: #fff;
    box-shadow: 0 18px 30px rgba(2, 132, 199, 0.18);
}

.feature-demo-stage.demo-consult .consult-b-1 { animation: consultBubble 12s infinite; animation-delay: 1.2s; }
.feature-demo-stage.demo-consult .consult-b-2 { animation: consultBubble 12s infinite; animation-delay: 2.2s; }
.feature-demo-stage.demo-consult .consult-btn { animation: consultBtn 12s infinite; animation-delay: 3.2s; }
.feature-demo-stage.demo-consult .consult-card { animation: consultCard 12s infinite; animation-delay: 4.2s; }
.feature-demo-stage.demo-consult .consult-li-1 { animation: consultRow 12s infinite; animation-delay: 4.7s; }
.feature-demo-stage.demo-consult .consult-li-2 { animation: consultRow 12s infinite; animation-delay: 5.05s; }
.feature-demo-stage.demo-consult .consult-li-3 { animation: consultRow 12s infinite; animation-delay: 5.4s; }
.feature-demo-stage.demo-consult .consult-li-4 { animation: consultRow 12s infinite; animation-delay: 5.75s; }

@keyframes consultBubble {
    0% { opacity: 0; transform: translateY(10px); }
    18% { opacity: 1; transform: translateY(0); }
    78% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(10px); }
}

@keyframes consultBtn {
    0% { opacity: 0; transform: translateY(10px); box-shadow: 0 20px 34px rgba(2, 132, 199, 0.25); }
    18% { opacity: 1; transform: translateY(0); box-shadow: 0 24px 40px rgba(2, 132, 199, 0.28); }
    45% { opacity: 1; transform: translateY(0); box-shadow: 0 30px 50px rgba(2, 132, 199, 0.34); }
    65% { opacity: 1; transform: translateY(0); box-shadow: 0 24px 40px rgba(2, 132, 199, 0.28); }
    100% { opacity: 0; transform: translateY(10px); box-shadow: 0 20px 34px rgba(2, 132, 199, 0.25); }
}

@keyframes consultCard {
    0% { opacity: 0; transform: translateY(12px); }
    16% { opacity: 1; transform: translateY(0); }
    78% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(12px); }
}

@keyframes consultRow {
    0% { opacity: 0; transform: translateY(10px); }
    22% { opacity: 1; transform: translateY(0); }
    82% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(10px); }
}

.feature-demo-stage .demo-request {
    border-radius: 18px;
    border: 1px solid rgba(226, 232, 240, 0.92);
    background: rgba(255, 255, 255, 0.82);
    padding: 14px 14px;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
    opacity: 0;
    transform: translateY(10px);
    animation: consultIn 9.5s infinite;
    animation-delay: 1.6s;
}

.feature-demo-stage .demo-card-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    color: rgba(15, 23, 42, 0.85);
    margin-bottom: 10px;
}

.feature-demo-stage .demo-card-title i {
    color: var(--secondary-color);
}

.feature-demo-stage .demo-card-body {
    color: rgba(30, 41, 59, 0.85);
    font-size: 0.92rem;
    line-height: 1.5;
}

.feature-demo-stage .demo-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(99, 102, 241, 0.95);
    font-weight: 900;
    opacity: 0;
    transform: scale(0.96);
    animation: consultFlow 9.5s infinite;
    animation-delay: 3.0s;
}

.feature-demo-stage .demo-flow i {
    font-size: 1.6rem;
}

.feature-demo-stage .demo-lawyers {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-demo-stage .demo-lawyer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 12px;
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.92);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
    opacity: 0;
    transform: translateY(10px);
    color: rgba(30, 41, 59, 0.9);
    font-weight: 800;
}

.feature-demo-stage .demo-lawyer-name {
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-demo-stage .demo-lawyer-tag {
    font-size: 0.78rem;
    font-weight: 900;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.14);
    color: rgba(99, 102, 241, 0.95);
    border: 1px solid rgba(99, 102, 241, 0.20);
}

.feature-demo-stage .demo-lawyer-tag.muted {
    background: rgba(148, 163, 184, 0.14);
    color: rgba(100, 116, 139, 0.95);
    border-color: rgba(148, 163, 184, 0.25);
}

.feature-demo-stage .demo-lawyer.lawyer-1 { animation: lawyerIn 9.5s infinite; animation-delay: 3.6s; }
.feature-demo-stage .demo-lawyer.lawyer-2 { animation: lawyerIn 9.5s infinite; animation-delay: 4.3s; }
.feature-demo-stage .demo-lawyer.lawyer-3 { animation: lawyerIn 9.5s infinite; animation-delay: 5.0s; }

.feature-demo-stage .demo-lawyer.lawyer-1 { animation-name: lawyerIn, lawyerHighlight; animation-duration: 9.5s, 9.5s; animation-iteration-count: infinite, infinite; animation-delay: 3.6s, 5.4s; }

.feature-demo-stage .demo-income {
    grid-column: 1 / -1;
    justify-self: center;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(2, 132, 199, 0.12);
    border: 1px solid rgba(2, 132, 199, 0.22);
    color: rgba(2, 132, 199, 0.95);
    font-weight: 900;
    opacity: 0;
    transform: translateY(10px);
    animation: incomeIn 9.5s infinite;
    animation-delay: 6.4s;
}

@keyframes demoIn {
    0% { opacity: 0; transform: translateY(10px); }
    9% { opacity: 1; transform: translateY(0); }
    70% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(10px); }
}

@keyframes demoIn2 {
    0% { opacity: 0; transform: translateY(10px); }
    18% { opacity: 0; transform: translateY(10px); }
    28% { opacity: 1; transform: translateY(0); }
    74% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(10px); }
}

@keyframes demoStep {
    0% { opacity: 0; transform: translateY(8px); }
    12% { opacity: 0; transform: translateY(8px); }
    20% { opacity: 1; transform: translateY(0); }
    82% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(8px); }
}

@keyframes toolGlow {
    0% { background: rgba(255, 255, 255, 0.8); border-color: rgba(226, 232, 240, 0.9); color: rgba(30, 41, 59, 0.85); transform: translateY(0); }
    20% { background: rgba(2, 132, 199, 0.15); border-color: rgba(2, 132, 199, 0.35); color: rgba(2, 132, 199, 0.95); transform: translateY(-1px); }
    55% { background: rgba(2, 132, 199, 0.15); border-color: rgba(2, 132, 199, 0.35); color: rgba(2, 132, 199, 0.95); transform: translateY(-1px); }
    100% { background: rgba(255, 255, 255, 0.8); border-color: rgba(226, 232, 240, 0.9); color: rgba(30, 41, 59, 0.85); transform: translateY(0); }
}

@keyframes phoneStep {
    0% { opacity: 0.25; transform: translateY(6px); }
    25% { opacity: 1; transform: translateY(0); }
    70% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0.25; transform: translateY(6px); }
}

@keyframes cursorScreenHome {
    0% { opacity: 0; transform: translateY(10px); }
    10% { opacity: 1; transform: translateY(0); }
    35% { opacity: 1; transform: translateY(0); }
    46% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 0; transform: translateY(10px); }
}

@keyframes cursorScreenOcr {
    0% { opacity: 0; transform: translateY(10px); }
    28% { opacity: 0; transform: translateY(10px); }
    40% { opacity: 1; transform: translateY(0); }
    62% { opacity: 1; transform: translateY(0); }
    74% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 0; transform: translateY(10px); }
}

@keyframes cursorScreenResult {
    0% { opacity: 0; transform: translateY(10px); }
    56% { opacity: 0; transform: translateY(10px); }
    68% { opacity: 1; transform: translateY(0); }
    86% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(10px); }
}

@keyframes cursorTabHome {
    0% { opacity: 0.65; background: rgba(248, 250, 252, 0.95); border-color: rgba(226, 232, 240, 0.9); color: rgba(51, 65, 85, 0.9); }
    10% { opacity: 1; background: rgba(2, 132, 199, 0.10); border-color: rgba(2, 132, 199, 0.30); color: rgba(2, 132, 199, 0.95); }
    38% { opacity: 1; background: rgba(2, 132, 199, 0.10); border-color: rgba(2, 132, 199, 0.30); color: rgba(2, 132, 199, 0.95); }
    50% { opacity: 0.65; background: rgba(248, 250, 252, 0.95); border-color: rgba(226, 232, 240, 0.9); color: rgba(51, 65, 85, 0.9); }
    100% { opacity: 0.65; background: rgba(248, 250, 252, 0.95); border-color: rgba(226, 232, 240, 0.9); color: rgba(51, 65, 85, 0.9); }
}

@keyframes cursorTabOcr {
    0% { opacity: 0.65; background: rgba(248, 250, 252, 0.95); border-color: rgba(226, 232, 240, 0.9); color: rgba(51, 65, 85, 0.9); }
    32% { opacity: 0.65; background: rgba(248, 250, 252, 0.95); border-color: rgba(226, 232, 240, 0.9); color: rgba(51, 65, 85, 0.9); }
    42% { opacity: 1; background: rgba(99, 102, 241, 0.12); border-color: rgba(99, 102, 241, 0.30); color: rgba(99, 102, 241, 0.92); }
    64% { opacity: 1; background: rgba(99, 102, 241, 0.12); border-color: rgba(99, 102, 241, 0.30); color: rgba(99, 102, 241, 0.92); }
    76% { opacity: 0.65; background: rgba(248, 250, 252, 0.95); border-color: rgba(226, 232, 240, 0.9); color: rgba(51, 65, 85, 0.9); }
    100% { opacity: 0.65; background: rgba(248, 250, 252, 0.95); border-color: rgba(226, 232, 240, 0.9); color: rgba(51, 65, 85, 0.9); }
}

@keyframes cursorTabResult {
    0% { opacity: 0.65; background: rgba(248, 250, 252, 0.95); border-color: rgba(226, 232, 240, 0.9); color: rgba(51, 65, 85, 0.9); }
    60% { opacity: 0.65; background: rgba(248, 250, 252, 0.95); border-color: rgba(226, 232, 240, 0.9); color: rgba(51, 65, 85, 0.9); }
    70% { opacity: 1; background: rgba(2, 132, 199, 0.10); border-color: rgba(2, 132, 199, 0.30); color: rgba(2, 132, 199, 0.95); }
    88% { opacity: 1; background: rgba(2, 132, 199, 0.10); border-color: rgba(2, 132, 199, 0.30); color: rgba(2, 132, 199, 0.95); }
    100% { opacity: 0.65; background: rgba(248, 250, 252, 0.95); border-color: rgba(226, 232, 240, 0.9); color: rgba(51, 65, 85, 0.9); }
}

@keyframes arrowPulse {
    0% { opacity: 0.18; transform: translateX(-6px); }
    35% { opacity: 1; transform: translateX(0); }
    70% { opacity: 1; transform: translateX(0); }
    100% { opacity: 0.18; transform: translateX(-6px); }
}

@keyframes payloadMove {
    0% { opacity: 0; transform: translateX(-28px) scale(0.96); }
    30% { opacity: 1; transform: translateX(-10px) scale(1); }
    68% { opacity: 1; transform: translateX(26px) scale(1); }
    100% { opacity: 0; transform: translateX(40px) scale(0.96); }
}

@keyframes cursorPayloadOcr {
    0% { opacity: 0; transform: translateX(-24px) scale(0.98); }
    44% { opacity: 0; transform: translateX(-24px) scale(0.98); }
    50% { opacity: 1; transform: translateX(0) scale(1); }
    62% { opacity: 1; transform: translateX(10px) scale(1); }
    68% { opacity: 0; transform: translateX(22px) scale(0.98); }
    100% { opacity: 0; transform: translateX(22px) scale(0.98); }
}

@keyframes cursorPayloadImage {
    0% { opacity: 0; transform: translateX(-24px) scale(0.98); }
    58% { opacity: 0; transform: translateX(-24px) scale(0.98); }
    64% { opacity: 1; transform: translateX(0) scale(1); }
    76% { opacity: 1; transform: translateX(10px) scale(1); }
    82% { opacity: 0; transform: translateX(22px) scale(0.98); }
    100% { opacity: 0; transform: translateX(22px) scale(0.98); }
}

@keyframes cursorPayloadFile {
    0% { opacity: 0; transform: translateX(-24px) scale(0.98); }
    72% { opacity: 0; transform: translateX(-24px) scale(0.98); }
    78% { opacity: 1; transform: translateX(0) scale(1); }
    90% { opacity: 1; transform: translateX(10px) scale(1); }
    96% { opacity: 0; transform: translateX(22px) scale(0.98); }
    100% { opacity: 0; transform: translateX(22px) scale(0.98); }
}

@keyframes cursorAttachImage {
    0% { opacity: 0; transform: translateY(8px); }
    66% { opacity: 0; transform: translateY(8px); }
    72% { opacity: 1; transform: translateY(0); }
    84% { opacity: 1; transform: translateY(0); }
    92% { opacity: 0; transform: translateY(-8px); }
    100% { opacity: 0; transform: translateY(-8px); }
}

@keyframes cursorAttachFile {
    0% { opacity: 0; transform: translateY(8px); }
    78% { opacity: 0; transform: translateY(8px); }
    84% { opacity: 1; transform: translateY(0); }
    94% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-8px); }
}

@keyframes docLine {
    0% { opacity: 0; transform: translateY(8px); }
    20% { opacity: 1; transform: translateY(0); }
    82% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(8px); }
}

@keyframes cursorInsert {
    0% { opacity: 0; transform: translateY(6px); }
    22% { opacity: 1; transform: translateY(0); }
    82% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(6px); }
}

@keyframes ocrBoxIn {
    0% { opacity: 0; transform: scale(0.98); }
    28% { opacity: 1; transform: scale(1); }
    70% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(0.98); }
}

@keyframes caretBlink {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

@keyframes consultIn {
    0% { opacity: 0; transform: translateY(10px); }
    18% { opacity: 1; transform: translateY(0); }
    78% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(10px); }
}

@keyframes consultFlow {
    0% { opacity: 0; transform: scale(0.96); }
    25% { opacity: 1; transform: scale(1); }
    76% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(0.96); }
}

@keyframes lawyerIn {
    0% { opacity: 0; transform: translateY(10px); }
    20% { opacity: 1; transform: translateY(0); }
    82% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(10px); }
}

@keyframes lawyerHighlight {
    0% { border-color: rgba(226, 232, 240, 0.92); box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05); }
    25% { border-color: rgba(99, 102, 241, 0.45); box-shadow: 0 18px 34px rgba(99, 102, 241, 0.18); }
    65% { border-color: rgba(99, 102, 241, 0.45); box-shadow: 0 18px 34px rgba(99, 102, 241, 0.18); }
    100% { border-color: rgba(226, 232, 240, 0.92); box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05); }
}

@keyframes incomeIn {
    0% { opacity: 0; transform: translateY(10px); }
    20% { opacity: 1; transform: translateY(0); }
    82% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(10px); }
}

@media (max-width: 768px) {
    .feature-demo-stage {
        aspect-ratio: 3 / 4;
        min-height: 460px;
    }

    .feature-demo-stage.demo-consult {
        aspect-ratio: 9 / 14;
        min-height: 560px;
    }

    .feature-demo-stage.demo-agent,
    .feature-demo-stage.demo-cursor {
        min-height: 520px;
    }

    .feature-demo-stage .demo-surface {
        padding: 52px 12px 12px;
    }

    .feature-demo-stage .demo-badge {
        padding: 6px 10px;
        font-size: 0.82rem;
    }

    .feature-demo-stage .demo-hint {
        padding: 5px 8px;
        font-size: 0.78rem;
    }

    .feature-demo-stage .demo-tool-strip {
        grid-template-columns: repeat(3, 1fr);
    }

    .feature-demo-stage .demo-cursor-surface {
        grid-template-columns: 1fr;
    }

    .feature-demo-stage .demo-arrow {
        width: auto;
        transform: rotate(90deg);
        animation-name: arrowPulse;
        justify-self: center;
    }

    .feature-demo-stage .demo-payload {
        display: none;
    }

    .feature-demo-stage.demo-agent .demo-app-support {
        white-space: normal;
        font-size: 0.68rem;
        line-height: 1.25;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .feature-demo-stage.demo-agent .demo-app-tabs {
        gap: 8px;
        padding: 10px 10px;
    }

    .feature-demo-stage.demo-agent .demo-app-tab {
        padding: 7px 10px;
        font-size: 0.74rem;
    }

    .feature-demo-stage.demo-consult .demo-consult-chat {
        padding: 12px 12px 6px;
        gap: 8px;
    }

    .feature-demo-stage.demo-consult .demo-consult-bubble {
        font-size: 0.78rem;
        padding: 9px 11px;
    }

    .feature-demo-stage.demo-consult .demo-consult-recommend-btn {
        padding: 9px 12px;
        font-size: 0.78rem;
    }

    .feature-demo-stage.demo-consult .demo-consult-card-title {
        padding: 10px 12px;
        font-size: 0.82rem;
    }

    .feature-demo-stage.demo-consult .demo-consult-lawyer-item {
        padding: 10px 12px;
        gap: 10px;
    }

    .feature-demo-stage.demo-consult .demo-consult-avatar {
        width: 38px;
        height: 38px;
    }

    .feature-demo-stage.demo-consult .demo-consult-lawyer-name {
        font-size: 0.84rem;
    }

    .feature-demo-stage.demo-consult .demo-consult-tag {
        font-size: 0.72rem;
        padding: 3px 8px;
    }

    .feature-demo-stage .demo-consult-surface {
        display: flex;
    }

    .feature-demo-stage .demo-income {
        grid-column: auto;
    }

    .feature-demo-stage .demo-consult-web {
        grid-template-columns: 1fr;
    }

    .feature-demo-stage .demo-consult-sidebar {
        display: none;
    }
}

.feature-demo-stage .demo-agent-surface {
    padding: 56px 12px 12px;
}

.feature-demo-stage.demo-agent.no-demo-header .demo-agent-surface {
    padding-top: 16px;
}

.feature-demo-stage.demo-agent .demo-header {
    z-index: 6;
}

.feature-demo-stage.demo-agent .demo-app {
    height: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.10);
    overflow: hidden;
}

.feature-demo-stage.demo-agent .demo-app-top {
    padding: 10px 12px 8px;
    border-bottom: 1px solid rgba(226, 232, 240, 0.95);
}

.feature-demo-stage.demo-agent .demo-app-title {
    font-weight: 900;
    font-size: 0.96rem;
    color: rgba(15, 23, 42, 0.9);
}

.feature-demo-stage.demo-agent .demo-app-support {
    margin-top: 4px;
    font-size: 0.72rem;
    color: rgba(100, 116, 139, 0.95);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.feature-demo-stage.demo-agent .demo-app-tabs {
    padding: 8px 12px;
    display: flex;
    gap: 8px;
    border-bottom: 1px solid rgba(226, 232, 240, 0.95);
    background: rgba(248, 250, 252, 0.72);
}

.feature-demo-stage.demo-agent .demo-app-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 12px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: rgba(255, 255, 255, 0.85);
    color: rgba(30, 41, 59, 0.9);
    font-weight: 900;
    font-size: 0.78rem;
}

.feature-demo-stage.demo-agent .demo-app-tab i {
    color: rgba(2, 132, 199, 0.95);
}

.feature-demo-stage.demo-agent .demo-app-body {
    flex: 1;
    display: grid;
    grid-template-columns: 190px 1fr 245px;
    min-height: 0;
}

.feature-demo-stage.demo-agent .demo-app-sidebar {
    border-right: 1px solid rgba(226, 232, 240, 0.95);
    background: rgba(248, 250, 252, 0.82);
    padding: 10px 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-demo-stage.demo-agent .demo-side-head {
    padding-bottom: 2px;
}

.feature-demo-stage.demo-agent .demo-side-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(226, 232, 240, 0.95);
    font-weight: 900;
    font-size: 0.78rem;
    color: rgba(30, 41, 59, 0.9);
}

.feature-demo-stage.demo-agent .demo-side-pill i {
    color: rgba(2, 132, 199, 0.95);
}

.feature-demo-stage.demo-agent .demo-side-item {
    font-size: 0.74rem;
    color: rgba(51, 65, 85, 0.9);
    padding: 8px 10px;
    border-radius: 12px;
    border: 1px solid rgba(226, 232, 240, 0.92);
    background: rgba(255, 255, 255, 0.82);
    display: flex;
    align-items: center;
    gap: 8px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.feature-demo-stage.demo-agent .demo-side-item i {
    width: 16px;
    text-align: center;
    color: rgba(2, 132, 199, 0.95);
    flex: 0 0 auto;
}

.feature-demo-stage.demo-agent .demo-side-item.demo-side-action {
    border-color: rgba(2, 132, 199, 0.30);
    background: rgba(2, 132, 199, 0.10);
    color: rgba(2, 132, 199, 0.95);
}

.feature-demo-stage.demo-agent .demo-side-item.demo-side-action i {
    color: rgba(2, 132, 199, 0.95);
}

.feature-demo-stage.demo-agent .demo-side-item.active {
    border-color: rgba(2, 132, 199, 0.32);
    box-shadow: 0 14px 26px rgba(2, 132, 199, 0.10);
}

.feature-demo-stage.demo-agent .demo-app-main {
    position: relative;
    padding: 10px 12px;
    min-width: 0;
    overflow: hidden;
}

.feature-demo-stage.demo-agent .demo-scene {
    position: absolute;
    inset: 10px 12px 10px 12px;
    opacity: 0;
    transform: translateY(10px);
}

.feature-demo-stage.demo-agent .scene-qa {
    animation: agentSceneQa 15s infinite;
}

.feature-demo-stage.demo-agent .scene-doc {
    animation: agentSceneDoc 15s infinite;
}

.feature-demo-stage.demo-agent .scene-calc {
    animation: agentSceneCalc 15s infinite;
}

.feature-demo-stage.demo-agent .demo-main-title {
    font-weight: 900;
    color: rgba(15, 23, 42, 0.9);
    font-size: 0.92rem;
    margin-bottom: 10px;
}

.feature-demo-stage.demo-agent .demo-upload-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.feature-demo-stage.demo-agent .demo-upload-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 12px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: rgba(255, 255, 255, 0.85);
    font-weight: 900;
    font-size: 0.74rem;
    color: rgba(30, 41, 59, 0.9);
}

.feature-demo-stage.demo-agent .demo-upload-chip i {
    color: rgba(2, 132, 199, 0.95);
}

.feature-demo-stage.demo-agent .demo-pipeline {
    border-radius: 14px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: rgba(255, 255, 255, 0.82);
    padding: 10px 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-demo-stage.demo-agent .demo-step {
    display: grid;
    grid-template-columns: auto auto 1fr auto;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 12px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: rgba(248, 250, 252, 0.75);
    font-weight: 900;
    font-size: 0.76rem;
    color: rgba(30, 41, 59, 0.9);
    opacity: 0.15;
    transform: translateY(8px);
}

.feature-demo-stage.demo-agent .demo-step i {
    color: rgba(2, 132, 199, 0.95);
    width: 16px;
    text-align: center;
}

.feature-demo-stage.demo-agent .demo-step-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.9);
}

.feature-demo-stage.demo-agent .demo-step-sub {
    font-size: 0.72rem;
    color: rgba(100, 116, 139, 0.95);
    font-weight: 800;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.feature-demo-stage.demo-agent .demo-step.st-1 { animation: agentFill 15s infinite; animation-delay: 4.0s; }
.feature-demo-stage.demo-agent .demo-step.st-2 { animation: agentFill 15s infinite; animation-delay: 4.8s; }
.feature-demo-stage.demo-agent .demo-step.st-3 { animation: agentFill 15s infinite; animation-delay: 5.6s; }
.feature-demo-stage.demo-agent .demo-step.st-4 { animation: agentFill 15s infinite; animation-delay: 6.4s; }

.feature-demo-stage.demo-agent .demo-pipeline-note {
    margin-top: 10px;
    font-size: 0.74rem;
    font-weight: 900;
    color: rgba(2, 132, 199, 0.95);
    padding: 10px 10px;
    border-radius: 14px;
    border: 1px solid rgba(2, 132, 199, 0.20);
    background: rgba(2, 132, 199, 0.06);
}

.feature-demo-stage.demo-agent .demo-output-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.feature-demo-stage.demo-agent .demo-output-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
    font-weight: 900;
    font-size: 0.78rem;
    color: rgba(30, 41, 59, 0.92);
    opacity: 0;
    transform: translateY(10px);
}

.feature-demo-stage.demo-agent .demo-output-chip i {
    color: rgba(2, 132, 199, 0.95);
}

.feature-demo-stage.demo-agent .demo-output-chip.out-1 { animation: agentFile 15s infinite; animation-delay: 10.2s; }
.feature-demo-stage.demo-agent .demo-output-chip.out-2 { animation: agentFile 15s infinite; animation-delay: 10.8s; }
.feature-demo-stage.demo-agent .demo-output-chip.out-3 { animation: agentFile 15s infinite; animation-delay: 11.4s; }
.feature-demo-stage.demo-agent .demo-output-chip.out-4 { animation: agentFile 15s infinite; animation-delay: 12.0s; }
.feature-demo-stage.demo-agent .demo-output-chip.out-5 { animation: agentFile 15s infinite; animation-delay: 12.6s; }

.feature-demo-stage.demo-agent .demo-output-note {
    margin-top: 10px;
    font-size: 0.72rem;
    color: rgba(100, 116, 139, 0.95);
    font-weight: 800;
}

.feature-demo-stage.demo-agent .demo-table {
    border-radius: 14px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: rgba(255, 255, 255, 0.82);
    overflow: hidden;
}

.feature-demo-stage.demo-agent .demo-tr {
    display: grid;
    grid-template-columns: 0.9fr 1.2fr 1.6fr;
    gap: 10px;
    padding: 8px 10px;
    font-size: 0.75rem;
    color: rgba(30, 41, 59, 0.9);
    border-top: 1px solid rgba(226, 232, 240, 0.95);
}

.feature-demo-stage.demo-agent .demo-tr.head {
    font-weight: 900;
    background: rgba(248, 250, 252, 0.9);
    border-top: none;
}

.feature-demo-stage.demo-agent .demo-links {
    margin-top: 12px;
    border-radius: 14px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: rgba(255, 255, 255, 0.78);
    padding: 10px 10px;
}

.feature-demo-stage.demo-agent .demo-links-title {
    font-weight: 900;
    font-size: 0.78rem;
    color: rgba(30, 41, 59, 0.9);
    margin-bottom: 8px;
}

.feature-demo-stage.demo-agent .demo-link-row {
    padding: 4px 0;
}

.feature-demo-stage.demo-agent .demo-link {
    display: inline-flex;
    padding: 4px 8px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 0.74rem;
    color: rgba(2, 132, 199, 0.95);
    border: 1px solid rgba(2, 132, 199, 0.20);
    background: rgba(2, 132, 199, 0.06);
}

.feature-demo-stage.demo-agent .demo-link.link-1 { animation: agentLink 15s infinite; animation-delay: 1.2s; }
.feature-demo-stage.demo-agent .demo-link.link-2 { animation: agentLink 15s infinite; animation-delay: 2.0s; }
.feature-demo-stage.demo-agent .demo-link.link-3 { animation: agentLink 15s infinite; animation-delay: 2.8s; }

.feature-demo-stage.demo-agent .demo-docgen-top {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.feature-demo-stage.demo-agent .demo-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 12px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: rgba(255, 255, 255, 0.84);
    font-weight: 900;
    font-size: 0.76rem;
    color: rgba(30, 41, 59, 0.9);
}

.feature-demo-stage.demo-agent .demo-btn.primary {
    border-color: rgba(2, 132, 199, 0.28);
    background: rgba(2, 132, 199, 0.12);
    color: rgba(2, 132, 199, 0.95);
}

.feature-demo-stage.demo-agent .demo-docgen-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 10px;
    height: calc(100% - 40px);
}

.feature-demo-stage.demo-agent .demo-doc-preview,
.feature-demo-stage.demo-agent .demo-form {
    border-radius: 14px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: rgba(255, 255, 255, 0.82);
    padding: 10px 10px;
    overflow: hidden;
}

.feature-demo-stage.demo-agent .demo-preview-title,
.feature-demo-stage.demo-agent .demo-form-title {
    font-weight: 900;
    color: rgba(15, 23, 42, 0.9);
    font-size: 0.8rem;
    margin-bottom: 8px;
}

.feature-demo-stage.demo-agent .demo-preview-block {
    font-size: 0.74rem;
    color: rgba(30, 41, 59, 0.9);
    border-radius: 12px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: rgba(248, 250, 252, 0.75);
    padding: 8px 9px;
    margin-bottom: 8px;
    opacity: 0.15;
    transform: translateY(8px);
}

.feature-demo-stage.demo-agent .demo-preview-block.pv-1 { animation: agentFill 15s infinite; animation-delay: 5.4s; }
.feature-demo-stage.demo-agent .demo-preview-block.pv-2 { animation: agentFill 15s infinite; animation-delay: 6.2s; }
.feature-demo-stage.demo-agent .demo-preview-block.pv-3 { animation: agentFill 15s infinite; animation-delay: 7.0s; }

.feature-demo-stage.demo-agent .demo-field {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 10px;
    align-items: center;
    padding: 6px 0;
    font-size: 0.74rem;
    color: rgba(51, 65, 85, 0.9);
}

.feature-demo-stage.demo-agent .demo-input {
    padding: 7px 9px;
    border-radius: 12px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: rgba(248, 250, 252, 0.75);
    font-weight: 900;
    color: rgba(30, 41, 59, 0.9);
    opacity: 0.22;
    transform: translateY(6px);
}

.feature-demo-stage.demo-agent .demo-input.f-1 { animation: agentFill 15s infinite; animation-delay: 5.5s; }
.feature-demo-stage.demo-agent .demo-input.f-2 { animation: agentFill 15s infinite; animation-delay: 6.1s; }
.feature-demo-stage.demo-agent .demo-input.f-3 { animation: agentFill 15s infinite; animation-delay: 6.7s; }
.feature-demo-stage.demo-agent .demo-input.f-4 { animation: agentFill 15s infinite; animation-delay: 7.3s; }

.feature-demo-stage.demo-agent .demo-bubble-row {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
}

.feature-demo-stage.demo-agent .demo-bubble.user {
    max-width: 90%;
    padding: 10px 12px;
    border-radius: 14px;
    font-weight: 900;
    font-size: 0.76rem;
    background: rgba(2, 132, 199, 0.95);
    color: #fff;
    box-shadow: 0 18px 30px rgba(2, 132, 199, 0.22);
}

.feature-demo-stage.demo-agent .demo-card {
    border-radius: 14px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: rgba(255, 255, 255, 0.85);
    padding: 12px 12px;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

.feature-demo-stage.demo-agent .demo-card-h {
    font-weight: 900;
    font-size: 0.88rem;
    margin-bottom: 10px;
    color: rgba(15, 23, 42, 0.9);
}

.feature-demo-stage.demo-agent .demo-card-table {
    border-radius: 12px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    overflow: hidden;
}

.feature-demo-stage.demo-agent .demo-ct-row {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 10px;
    padding: 8px 10px;
    font-size: 0.74rem;
    color: rgba(30, 41, 59, 0.9);
    border-top: 1px solid rgba(226, 232, 240, 0.95);
}

.feature-demo-stage.demo-agent .demo-ct-row.head {
    border-top: none;
    font-weight: 900;
    background: rgba(248, 250, 252, 0.92);
}

.feature-demo-stage.demo-agent .demo-file {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 12px;
    border: 1px solid rgba(34, 197, 94, 0.25);
    background: rgba(34, 197, 94, 0.10);
    color: rgba(21, 128, 61, 0.95);
    font-weight: 900;
    font-size: 0.76rem;
    opacity: 0;
    transform: translateY(8px);
    animation: agentFile 15s infinite;
    animation-delay: 12.0s;
}

.feature-demo-stage.demo-agent .demo-app-right {
    border-left: 1px solid rgba(226, 232, 240, 0.95);
    background: rgba(248, 250, 252, 0.82);
    padding: 10px 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.feature-demo-stage.demo-agent .demo-right-title {
    font-weight: 900;
    font-size: 0.82rem;
    color: rgba(15, 23, 42, 0.9);
}

.feature-demo-stage.demo-agent .demo-right-sub {
    font-size: 0.72rem;
    color: rgba(100, 116, 139, 0.95);
    margin-top: -4px;
}

.feature-demo-stage.demo-agent .demo-right-card {
    border-radius: 12px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: rgba(255, 255, 255, 0.86);
    padding: 9px 9px;
    overflow: hidden;
}

.feature-demo-stage.demo-agent .demo-right-h {
    font-weight: 900;
    font-size: 0.76rem;
    color: rgba(30, 41, 59, 0.9);
    margin-bottom: 6px;
}

.feature-demo-stage.demo-agent .demo-right-p {
    font-size: 0.72rem;
    color: rgba(51, 65, 85, 0.9);
    line-height: 1.45;
}

.feature-demo-stage.demo-agent .demo-app-input {
    border-top: 1px solid rgba(226, 232, 240, 0.95);
    padding: 10px 12px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    gap: 10px;
    align-items: center;
    background: rgba(255, 255, 255, 0.86);
}

.feature-demo-stage.demo-agent .demo-input-uploadbar {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 14px;
    border: 1px dashed rgba(2, 132, 199, 0.28);
    background: rgba(2, 132, 199, 0.05);
    opacity: 0;
    transform: translateY(8px);
    animation: agentFile 15s infinite;
    animation-delay: 0.8s;
}

.feature-demo-stage.demo-agent .demo-input-uploadbar .demo-upload-chip {
    opacity: 0;
    transform: translateY(8px);
}

.feature-demo-stage.demo-agent .demo-input-uploadbar .demo-upload-chip.upl-1 { animation: agentFile 15s infinite; animation-delay: 0.95s; }
.feature-demo-stage.demo-agent .demo-input-uploadbar .demo-upload-chip.upl-2 { animation: agentFile 15s infinite; animation-delay: 1.15s; }
.feature-demo-stage.demo-agent .demo-input-uploadbar .demo-upload-chip.upl-3 { animation: agentFile 15s infinite; animation-delay: 1.35s; }

.feature-demo-stage.demo-agent .demo-upload-status {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(34, 197, 94, 0.24);
    background: rgba(34, 197, 94, 0.10);
    color: rgba(21, 128, 61, 0.95);
    font-weight: 900;
    font-size: 0.74rem;
    white-space: nowrap;
}

.feature-demo-stage.demo-agent .demo-upload-status i {
    color: rgba(21, 128, 61, 0.95);
}

.feature-demo-stage.demo-agent .demo-input-left {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.feature-demo-stage.demo-agent .demo-mini-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 9px;
    border-radius: 12px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: rgba(248, 250, 252, 0.8);
    font-weight: 900;
    font-size: 0.74rem;
    color: rgba(30, 41, 59, 0.9);
}

.feature-demo-stage.demo-agent .demo-mini-btn i {
    color: rgba(2, 132, 199, 0.95);
}

.feature-demo-stage.demo-agent .demo-input-box {
    height: 36px;
    border-radius: 12px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: rgba(255, 255, 255, 0.92);
    display: flex;
    align-items: center;
    padding: 0 10px;
    overflow: hidden;
}

.feature-demo-stage.demo-agent .demo-placeholder {
    font-size: 0.76rem;
    color: rgba(148, 163, 184, 0.95);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.feature-demo-stage.demo-agent .demo-send {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(2, 132, 199, 0.95);
    color: #fff;
    box-shadow: 0 18px 30px rgba(2, 132, 199, 0.20);
}

.feature-demo-stage.demo-agent .tab-qa { animation: agentTabQa 15s infinite; }
.feature-demo-stage.demo-agent .tab-doc { animation: agentTabDoc 15s infinite; }
.feature-demo-stage.demo-agent .tab-calc { animation: agentTabCalc 15s infinite; }

@keyframes agentSceneQa {
    0% { opacity: 0; transform: translateY(10px); }
    6% { opacity: 1; transform: translateY(0); }
    32% { opacity: 1; transform: translateY(0); }
    38% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 0; transform: translateY(10px); }
}

@keyframes agentSceneDoc {
    0% { opacity: 0; transform: translateY(10px); }
    32% { opacity: 0; transform: translateY(10px); }
    40% { opacity: 1; transform: translateY(0); }
    62% { opacity: 1; transform: translateY(0); }
    70% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 0; transform: translateY(10px); }
}

@keyframes agentSceneCalc {
    0% { opacity: 0; transform: translateY(10px); }
    62% { opacity: 0; transform: translateY(10px); }
    70% { opacity: 1; transform: translateY(0); }
    92% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(10px); }
}

@keyframes agentTabQa {
    0% { background: rgba(2, 132, 199, 0.12); border-color: rgba(2, 132, 199, 0.30); color: rgba(2, 132, 199, 0.95); }
    35% { background: rgba(2, 132, 199, 0.12); border-color: rgba(2, 132, 199, 0.30); color: rgba(2, 132, 199, 0.95); }
    45% { background: rgba(255, 255, 255, 0.85); border-color: rgba(226, 232, 240, 0.95); color: rgba(30, 41, 59, 0.9); }
    100% { background: rgba(255, 255, 255, 0.85); border-color: rgba(226, 232, 240, 0.95); color: rgba(30, 41, 59, 0.9); }
}

@keyframes agentTabDoc {
    0% { background: rgba(255, 255, 255, 0.85); border-color: rgba(226, 232, 240, 0.95); color: rgba(30, 41, 59, 0.9); }
    33% { background: rgba(255, 255, 255, 0.85); border-color: rgba(226, 232, 240, 0.95); color: rgba(30, 41, 59, 0.9); }
    42% { background: rgba(2, 132, 199, 0.12); border-color: rgba(2, 132, 199, 0.30); color: rgba(2, 132, 199, 0.95); }
    68% { background: rgba(2, 132, 199, 0.12); border-color: rgba(2, 132, 199, 0.30); color: rgba(2, 132, 199, 0.95); }
    78% { background: rgba(255, 255, 255, 0.85); border-color: rgba(226, 232, 240, 0.95); color: rgba(30, 41, 59, 0.9); }
    100% { background: rgba(255, 255, 255, 0.85); border-color: rgba(226, 232, 240, 0.95); color: rgba(30, 41, 59, 0.9); }
}

@keyframes agentTabCalc {
    0% { background: rgba(255, 255, 255, 0.85); border-color: rgba(226, 232, 240, 0.95); color: rgba(30, 41, 59, 0.9); }
    64% { background: rgba(255, 255, 255, 0.85); border-color: rgba(226, 232, 240, 0.95); color: rgba(30, 41, 59, 0.9); }
    72% { background: rgba(2, 132, 199, 0.12); border-color: rgba(2, 132, 199, 0.30); color: rgba(2, 132, 199, 0.95); }
    92% { background: rgba(2, 132, 199, 0.12); border-color: rgba(2, 132, 199, 0.30); color: rgba(2, 132, 199, 0.95); }
    100% { background: rgba(255, 255, 255, 0.85); border-color: rgba(226, 232, 240, 0.95); color: rgba(30, 41, 59, 0.9); }
}

@keyframes agentLink {
    0% { opacity: 1; transform: translateY(0); }
    25% { opacity: 1; transform: translateY(0); }
    35% { opacity: 1; transform: translateY(0); box-shadow: 0 14px 26px rgba(2, 132, 199, 0.16); }
    55% { opacity: 1; transform: translateY(0); box-shadow: 0 14px 26px rgba(2, 132, 199, 0.16); }
    100% { opacity: 1; transform: translateY(0); box-shadow: none; }
}

@keyframes agentFill {
    0% { opacity: 0.15; transform: translateY(8px); }
    18% { opacity: 1; transform: translateY(0); }
    76% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0.15; transform: translateY(8px); }
}

@keyframes agentFile {
    0% { opacity: 0; transform: translateY(8px); }
    18% { opacity: 1; transform: translateY(0); }
    80% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(8px); }
}

@media (max-width: 768px) {
    .feature-demo-stage.demo-agent .demo-app-support {
        display: none;
    }

    .feature-demo-stage.demo-agent .demo-app-body {
        grid-template-columns: 1fr;
    }

    .feature-demo-stage.demo-agent .demo-app-sidebar,
    .feature-demo-stage.demo-agent .demo-app-right {
        display: none;
    }

    .feature-demo-stage.demo-agent .demo-docgen-grid {
        grid-template-columns: 1fr;
        height: auto;
    }
}

/* CTA Link */
.cta-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 120px;
    margin-top: 50px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 14px 40px;
    background: transparent;
    color: #2d3748;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.cta-icon-left,
.cta-icon-right {
    font-size: 1rem;
    color: #4a5568;
    transition: all 0.3s ease;
}

.cta-button:hover .cta-icon-left {
    transform: translateX(-3px);
    color: #1e3a5f;
}

.cta-button:hover .cta-icon-right {
    transform: translateX(3px);
    color: #1e3a5f;
}

.cta-button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: #4a5568;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.cta-button:hover {
    color: #1e3a5f;
}

.cta-button:hover::after {
    width: 80%;
    background: #1e3a5f;
}

.cta-text {
    letter-spacing: 3px;
}

/* Download Grid */
.download-grid {
    display: grid;
    grid-template-columns: 1fr; /* Default to 1 column for mobile */
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

/* Wide screen 2x2 layout */
@media (min-width: 768px) {
    .download-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.download-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s;
    position: relative;
    overflow: visible;
}

.download-card:hover {
    background: #f1f5f9;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.download-card .icon-wrapper {
    width: 56px;
    height: 56px;
    background: rgba(2, 132, 199, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: 0.3s;
}

.download-card:hover .icon-wrapper {
    background: var(--primary-color);
}

.download-card:hover .icon-wrapper img {
    filter: brightness(0) invert(1);
}

.download-card .icon-wrapper img {
    width: 32px;
    height: 32px;
    transition: 0.3s;
}

.download-card .text-wrapper {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.download-card .platform {
    font-weight: 700;
    font-size: 1.1rem;
}

.download-card .desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.recommend {
    border-color: rgba(2, 132, 199, 0.3);
}

/* QR Code Popup */
.qr-code-popup {
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: #000;
}

.qr-code-popup img {
    width: 120px;
    height: 120px;
}

.qr-code-popup span {
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 5px;
}

.download-card:hover .qr-code-popup {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

/* Value Proposition */
.value-prop {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-color) 0%, #f1f5f9 100%);
}

.download {
    padding: 90px 0 30px;
    background: var(--bg-color);
}

.download-wrap {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.download-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    max-width: 860px;
    margin: 0 auto 90px;
}

.download-actions .download-card {
    border-radius: 18px;
    padding: 18px 20px;
    min-height: 96px;
    background: #ffffff;
    overflow: visible;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(226, 232, 240, 0.9);
}

.download-actions .download-card:hover,
.download-actions .download-card:focus-visible {
    z-index: 5;
}

.download-actions .download-card .qr-code-popup {
    z-index: 10;
}

.download-actions .download-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    border-radius: 18px 0 0 18px;
    background: linear-gradient(180deg, rgba(2, 132, 199, 0.85), rgba(99, 102, 241, 0.85));
}

.download-actions .download-card::after {
    content: '›';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8rem;
    line-height: 1;
    color: rgba(100, 116, 139, 0.9);
    transition: 0.25s;
}

.download-actions .download-card .icon-wrapper {
    width: 62px;
    height: 62px;
    border-radius: 16px;
}

.download-actions .download-card .icon-wrapper img {
    width: 34px;
    height: 34px;
}

.download-actions .download-card .platform {
    font-size: 1.15rem;
}

.download-actions .download-card .desc {
    font-size: 0.88rem;
}

.download-actions #download-pc .icon-wrapper {
    background: rgba(2, 132, 199, 0.12);
}

.download-actions #download-mobile .icon-wrapper {
    background: rgba(99, 102, 241, 0.12);
}

.download-actions #download-pc::before {
    background: linear-gradient(180deg, rgba(2, 132, 199, 0.95), rgba(2, 132, 199, 0.55));
}

.download-actions #download-mobile::before {
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.95), rgba(99, 102, 241, 0.55));
}

.download-actions #download-pc:hover,
.download-actions #download-pc:focus-visible {
    border-color: rgba(2, 132, 199, 0.45);
    box-shadow: 0 18px 46px rgba(2, 132, 199, 0.14);
    transform: translateY(-3px);
}

.download-actions #download-mobile:hover,
.download-actions #download-mobile:focus-visible {
    border-color: rgba(99, 102, 241, 0.45);
    box-shadow: 0 18px 46px rgba(99, 102, 241, 0.14);
    transform: translateY(-3px);
}

.download-actions #download-pc:hover::after,
.download-actions #download-mobile:hover::after {
    transform: translateY(-50%) translateX(2px);
    color: rgba(15, 23, 42, 0.8);
}

.download-actions #download-pc:hover .icon-wrapper {
    background: var(--primary-color);
}

.download-actions #download-mobile:hover .icon-wrapper {
    background: var(--secondary-color);
}

.download-actions #download-pc:hover .icon-wrapper img,
.download-actions #download-mobile:hover .icon-wrapper img {
    filter: brightness(0) invert(1);
}

.download-actions .download-card:focus-visible {
    outline: 3px solid rgba(2, 132, 199, 0.25);
    outline-offset: 2px;
}

.download-anchor {
    position: relative;
}

.download-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.download-feature-grid .feature-card {
    position: relative;
}

.download-feature-grid .feature-card {
    min-height: 152px;
}

.download-feature-grid .feature-card {
    transition: 0.25s;
}

.download-wrap[data-active] .dl-target {
    opacity: 0.35;
    filter: grayscale(0.35);
}

.download-wrap[data-active] .dl-target .icon-box {
    background: rgba(100, 116, 139, 0.08);
    color: rgba(100, 116, 139, 0.95);
}

.download-wrap[data-active] .dl-target p {
    color: rgba(100, 116, 139, 0.95);
}

.download-wrap[data-active="pc"] .dl-target[data-dl-target="pc"],
.download-wrap[data-active="mobile"] .dl-target[data-dl-target="mobile"] {
    opacity: 1;
    filter: none;
    border-color: rgba(2, 132, 199, 0.55);
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.06) 0%, rgba(255, 255, 255, 1) 60%);
    box-shadow: 0 18px 46px rgba(2, 132, 199, 0.16);
    transform: translateY(-2px);
}

.download-wrap[data-active="mobile"] .dl-target[data-dl-target="mobile"] {
    border-color: rgba(99, 102, 241, 0.55);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.06) 0%, rgba(255, 255, 255, 1) 60%);
    box-shadow: 0 18px 46px rgba(99, 102, 241, 0.16);
}

.download-wrap[data-active="pc"] .dl-target[data-dl-target="pc"] .icon-box,
.download-wrap[data-active="mobile"] .dl-target[data-dl-target="mobile"] .icon-box {
    background: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(2, 132, 199, 0.28);
}

.download-wrap[data-active="mobile"] .dl-target[data-dl-target="mobile"] .icon-box {
    background: var(--secondary-color);
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(99, 102, 241, 0.28);
}

.download-feature-grid .feature-card strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.download-feature-grid .feature-card p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.download .feature-card:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--glass-border);
}

.download-wrap[data-active="pc"] #download-pc {
    border-color: rgba(2, 132, 199, 0.55);
    box-shadow: 0 16px 40px rgba(2, 132, 199, 0.14);
    transform: translateY(-3px);
}

.download-wrap[data-active="mobile"] #download-mobile {
    border-color: rgba(99, 102, 241, 0.55);
    box-shadow: 0 16px 40px rgba(99, 102, 241, 0.14);
    transform: translateY(-3px);
}

@media (min-width: 980px) {
    .download-feature-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .download-feature-grid .feature-card:first-child {
        grid-column: auto;
    }
}

@media (max-width: 768px) {
    .download {
        padding: 70px 0 20px;
    }

    .download-actions {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-bottom: 18px;
    }

    .download-feature-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 980px) and (min-width: 769px) {
    .download-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-muted);
    position: relative;
    z-index: 2;
}

.card-bg-img {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    opacity: 0.05;
    transition: 0.3s;
}

.value-card:hover .card-bg-img {
    transform: scale(1.2);
    opacity: 0.1;
}

/* Features Section */
.features {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header .divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto 15px;
}

.section-header p {
    color: var(--text-muted);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 50px;
}

.feature-item.reverse {
    flex-direction: row-reverse;
}

.feature-item.stacked {
    flex-direction: column;
    align-items: stretch;
    gap: 50px;
}

.feature-item.stacked .feature-media {
    order: -1;
}

.feature-text {
    flex: 1;
}

.feature-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.feature-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(2, 132, 199, 0.08);
    border: 1px solid rgba(2, 132, 199, 0.18);
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.chip i {
    color: var(--primary-color);
}

.feature-cta {
    margin-top: 20px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.capabilities-grid {
    margin-top: 10px;
}

.mobile {
    padding: 100px 0;
    background: #f1f5f9;
}

.consult {
    padding: 100px 0;
    background: var(--bg-color);
}

.workflow {
    padding: 100px 0;
}

.steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    max-width: 980px;
    margin: 0 auto;
}

.step-card {
    display: flex;
    gap: 16px;
    padding: 18px 18px;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    background: var(--card-bg);
    transition: 0.3s;
}

.step-card:hover {
    border-color: rgba(2, 132, 199, 0.35);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    transform: translateY(-3px);
}

.step-index {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    flex-shrink: 0;
}

.step-title {
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 6px;
}

.step-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.workflow-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.feature-media {
    flex: 1.5;
}

.video-container {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.video-container video {
    width: 100%;
    display: block;
}

.video-container:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(2, 132, 199, 0.15);
}

.pricing {
    padding: 100px 0;
    background: #ffffff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
    margin-top: 40px;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    padding: 28px;
    transition: 0.3s;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(2, 132, 199, 0.5);
    box-shadow: 0 26px 60px rgba(2, 132, 199, 0.14);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(180deg, rgba(2, 132, 199, 0.08), rgba(99, 102, 241, 0.03));
}

.pricing-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.pricing-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-color);
    margin: 0;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-weight: 800;
    color: var(--text-color);
}

.pricing-price .currency {
    font-size: 1rem;
    color: var(--primary-color);
}

.pricing-price .amount {
    font-size: 2rem;
    letter-spacing: -0.02em;
}

.pricing-list,
.pricing-sublist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pricing-list {
    margin-top: 10px;
}

.pricing-sublist {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--glass-border);
}

.pricing-list li,
.pricing-sublist li {
    display: flex;
    gap: 10px;
    line-height: 1.6;
    color: var(--text-muted);
}

.pricing-list li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: 900;
}

.pricing-sublist li::before {
    content: "·";
    color: var(--secondary-color);
    font-weight: 900;
}

@media (max-width: 768px) {
    .pricing-card {
        padding: 22px;
    }

    .pricing-price .amount {
        font-size: 1.8rem;
    }
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: #f1f5f9;
}

.faq-list {
    max-width: 980px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    background: var(--card-bg);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    color: var(--text-color);
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

.faq-question:hover {
    background: rgba(0, 0, 0, 0.03);
}

.faq-question i {
    transition: 0.3s;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease-out;
    background: rgba(0, 0, 0, 0.02);
}

.faq-answer p {
    padding: 20px 0;
    color: var(--text-muted);
}

.faq-question.active + .faq-answer {
    max-height: 200px; /* Adjust as needed */
}

/* Contact Section */
.contact {
    padding: 100px 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info .intro {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-muted);
}

.info-item {
    display: flex;
    align-items: center;
    padding: 0px 20px;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.info-item i {
    color: var(--primary-color);
    width: 25px;
}

.contact-emails {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.email-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    padding: 25px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    transition: 0.3s;
}

.email-card:hover {
    border-color: var(--primary-color);
    background: #f8fafc;
}

.email-card i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.email-card h4 {
    font-size: 1.2rem;
}

.email-card p {
    color: var(--text-muted);
}
.centered-text {
    text-align: left;
    font-size: 1.2em;
    color: var(--text-color);
    padding: 20px 40px;
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 20px;
    }
    .page-content {
        padding: 0 20px;
    }
    .centered-text {
        padding: 16px 20px;
        font-size: 1.05em;
    }

    .info-item {
        padding: 0;
    }

    .hero-core {
        gap: 10px 16px;
        margin-bottom: 46px;
        font-size: 1.02rem;
        min-height: 56px;
    }
}


/* Docs Section */
.docs {
    padding: 100px 0;
    position: relative;
}

.docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.doc-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.doc-card:hover {
    transform: translateY(-10px);
    background: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(2, 132, 199, 0.15);
}

.doc-header h4 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--text-color);
}

.doc-header small {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 20px;
    text-transform: lowercase;
}

.doc-list {
    margin-bottom: 30px;
    flex-grow: 1;
}

.doc-list li {
    color: var(--text-muted);
    padding: 5px 0;
}

.doc-btn {
    display: inline-block;
    padding: 10px 30px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
    text-transform: uppercase;
}

.doc-btn:hover {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 0 20px rgba(2, 132, 199, 0.4);
}

/* Footer */
footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

footer a {
    color: var(--primary-color);
}

footer.site-footer {
    padding: 54px 0 26px;
    text-align: left;
    font-size: 0.85rem;
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr)) 1.3fr;
    gap: 26px;
    align-items: start;
}

.site-footer .footer-brand-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-color);
}

.site-footer .footer-badge {
    font-size: 0.7rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    padding: 2px 8px;
    border-radius: 999px;
    font-weight: 600;
    border: 1px solid rgba(37, 99, 235, 0.3);
}

.site-footer .footer-brand-sub {
    margin-top: 8px;
    color: var(--text-muted);
}

.site-footer .footer-brand-meta {
    margin-top: 6px;
    color: var(--text-muted);
    font-size: 0.82rem;
}

.site-footer .footer-title {
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 10px;
}

.site-footer .footer-text {
    color: var(--text-muted);
    padding: 4px 0;
    line-height: 1.6;
}

.site-footer .footer-link {
    color: var(--text-muted);
    display: block;
    padding: 4px 0;
}

.site-footer .footer-link:hover {
    color: var(--primary-color);
}

.site-footer .footer-police {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.site-footer .footer-police-icon {
    width: 14px;
    height: 14px;
    vertical-align: middle;
}

.site-footer .footer-bottom {
    margin-top: 26px;
    padding-top: 16px;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 14px;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.site-footer .footer-bottom-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 14px;
}

.site-footer .footer-bottom-links .footer-link {
    display: inline;
    padding: 0;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.35rem;
    }

    .hero .subtitle {
        font-size: 1.05rem;
        letter-spacing: 1px;
    }

    .hero-metrics {
        margin-top: 26px;
        padding-top: 18px;
    }

    .metrics-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px 18px;
        justify-content: center;
    }

    .metric-value {
        font-size: 1.55rem;
    }

    .metric-label {
        font-size: 0.82rem;
    }

    footer.site-footer {
        padding: 36px 0 22px;
    }

    .site-footer .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px 18px;
    }

    .site-footer .footer-brand {
        grid-column: 1 / -1;
    }

    .site-footer .footer-brand-title {
        font-size: 1rem;
    }

    .site-footer .footer-brand-sub {
        font-size: 0.85rem;
        margin-top: 6px;
    }

    .site-footer .footer-brand-meta {
        font-size: 0.8rem;
        margin-top: 4px;
    }

    .site-footer .footer-title {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .site-footer .footer-link {
        padding: 3px 0;
        font-size: 0.85rem;
    }

    .site-footer .footer-text {
        padding: 3px 0;
        font-size: 0.85rem;
    }

    .site-footer .footer-bottom {
        align-items: flex-start;
        font-size: 0.78rem;
    }

    .site-footer .footer-bottom-links {
        width: 100%;
        justify-content: flex-start;
    }

    .site-footer .footer-bottom-links .footer-police {
        width: 100%;
    }
}

@media (max-width: 380px) {
    .site-footer .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
        border-bottom: 1px solid var(--glass-border);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .subtitle {
        font-size: 1.15rem;
        letter-spacing: 0.5px;
        margin-bottom: 26px;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
        max-width: 360px;
    }

    .hero-badge {
        font-size: 0.9rem;
    }

    .chip {
        font-size: 0.9rem;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .feature-item {
        flex-direction: column !important;
        text-align: center;
    }
}

/* =========================================
   Legal & Content Pages Styles
   ========================================= */

.page-header {
    padding-top: 120px;
    padding-bottom: 60px;
    text-align: center;
    background: radial-gradient(circle at center top, rgba(2, 132, 199, 0.1) 0%, transparent 70%);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #0f172a, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.page-content {
    max-width: 900px;
    margin: 0 auto 100px;
    padding: 0 40px;
}

.content-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.content-card h2 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-top: 30px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-card h2:first-child {
    margin-top: 0;
}

.content-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin: 25px 0 15px;
}

.content-card p {
    margin-bottom: 1.2em;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: justify;
}

.content-card ul, .content-card ol {
    margin-bottom: 1.5em;
    padding-left: 20px;
    color: var(--text-muted);
}

.content-card li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.content-card li::marker {
    color: var(--primary-color);
}

.legal-text pre {
    white-space: pre-wrap;
    font-family: 'Inter', sans-serif;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
}

.highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.contact-item {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid var(--glass-border);
    transition: 0.3s;
}

.contact-item:hover {
    border-color: var(--primary-color);
    background: #f8fafc;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Feature Grid & Icon Box for About Page */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.feature-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-color);
}

.icon-box {
    width: 48px;
    height: 48px;
    background: rgba(2, 132, 199, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: 0.3s;
}

.feature-card:hover .icon-box {
    background: var(--primary-color);
    color: #ffffff;
}

.feature-card strong {
    font-size: 1.1rem;
    color: var(--text-color);
    display: block;
    margin-bottom: 5px;
}

.feature-card p {
    font-size: 0.7rem !important;
    margin-bottom: 0 !important;
    color: var(--text-muted);
}

.video-wrapper {
    margin: 40px 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.video-wrapper video {
    width: 100%;
    display: block;
}

@media (max-width: 768px) {
    .page-header {
        padding-top: 100px;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .content-card {
        padding: 25px;
    }
}
