/* Neuronica Landing Page - Modern Dark Theme */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
    --bg: #0a0a0f;
    --bg-elevated: #12121a;
    --bg-card: #16161f;
    --bg-card-hover: #1c1c28;
    --surface: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.15);
    --text: #f8f9fc;
    --text-secondary: #8b8fa3;
    --text-muted: #5c6070;
    --primary: #00f5d4;
    --primary-dim: rgba(0, 245, 212, 0.15);
    --secondary: #7b61ff;
    --secondary-dim: rgba(123, 97, 255, 0.15);
    --accent: #ff6b9d;
    --success: #10b981;
    --warning: #f59e0b;
    --vk: #0077ff;
    --tg: #26a5e4;
    --yt: #ff0000;
    --ig: #e4405f;
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.5);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Background Effects */
.gradient-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 10%, rgba(0, 245, 212, 0.12), transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(16, 185, 129, 0.1), transparent 50%),
        radial-gradient(ellipse 50% 60% at 50% 90%, rgba(0, 212, 170, 0.08), transparent 50%);
    animation: bgPulse 15s ease-in-out infinite alternate;
}

@keyframes bgPulse {
    0% { opacity: 0.7; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.05); }
}

.grid-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 24px;
    backdrop-filter: blur(20px);
    background: rgba(10, 10, 15, 0.8);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition);
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width var(--transition);
}

.nav a:hover {
    color: var(--text);
}

.nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 4px;
    padding: 4px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-right: 8px;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    border-radius: 7px;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.lang-btn:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
}

.lang-btn.active {
    background: linear-gradient(135deg, rgba(0, 245, 212, 0.15), rgba(16, 185, 129, 0.1));
    color: var(--primary);
    border: 1px solid rgba(0, 245, 212, 0.3);
}

.lang-flag {
    font-size: 1rem;
    line-height: 1;
}

.lang-code {
    letter-spacing: 0.5px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--success));
    color: var(--bg);
    box-shadow: 0 4px 20px rgba(0, 245, 212, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 245, 212, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

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

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

.btn-ghost:hover {
    color: var(--text);
    background: var(--surface);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
}

/* Hero Section - Compact */
.hero-compact {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    align-items: center;
    padding: 100px 40px 60px;
    max-width: 1400px;
    margin: 0 auto;
    min-height: calc(100vh - 80px);
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-badge-sm {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
    width: fit-content;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title-compact {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #00f5d4, #00d4aa, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 480px;
}

/* Hero Highlights - Catchy phrases */
.hero-highlights {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 16px 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: linear-gradient(135deg, rgba(0, 245, 212, 0.08), rgba(16, 185, 129, 0.05));
    border: 1px solid rgba(0, 245, 212, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(4px);
    border-color: rgba(0, 245, 212, 0.3);
    background: linear-gradient(135deg, rgba(0, 245, 212, 0.12), rgba(16, 185, 129, 0.08));
}

.highlight-icon {
    font-size: 1.3rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 245, 212, 0.1);
    border-radius: 10px;
    flex-shrink: 0;
}

.highlight-text {
    font-size: 0.9rem;
    color: var(--text);
}

.highlight-text b {
    color: var(--primary);
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-mini-stats {
    display: flex;
    gap: 24px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.mini-stat {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.mini-stat strong {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    color: var(--primary);
}

.mini-stat span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Hero Right - Workflow Pipeline */
.hero-right {
    display: flex;
    flex-direction: column;
}

.workflow-pipeline {
    background: linear-gradient(145deg, rgba(20, 25, 35, 0.95), rgba(15, 20, 28, 0.98));
    border: 1px solid rgba(0, 245, 212, 0.15);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(0, 245, 212, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.pipeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: linear-gradient(90deg, rgba(0, 245, 212, 0.08), transparent);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pipeline-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pipeline-title::before {
    content: '⚡';
    font-size: 1rem;
}

.pipeline-step-counter {
    font-size: 0.8rem;
    color: var(--text-secondary);
    background: rgba(0, 245, 212, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(0, 245, 212, 0.2);
}

.pipeline-step-counter span {
    color: var(--primary);
    font-weight: 700;
}

.pipeline-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 12px;
    background: rgba(0, 0, 0, 0.2);
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: none;
}

.pipeline-steps::-webkit-scrollbar {
    display: none;
}

.pipeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 10px 8px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 56px;
    flex-shrink: 0;
    background: rgba(30, 35, 45, 0.6);
    border: 1px solid transparent;
}

.pipeline-step:hover {
    transform: translateY(-2px);
}

.pipeline-step:hover .step-num {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 245, 212, 0.3);
}

.pipeline-step.active {
    background: linear-gradient(180deg, rgba(0, 245, 212, 0.2), rgba(0, 245, 212, 0.05));
    box-shadow: 0 0 20px rgba(0, 245, 212, 0.15);
}

.pipeline-step.active .step-num {
    background: linear-gradient(135deg, var(--primary), #10b981);
    color: var(--bg);
    box-shadow: 0 0 20px rgba(0, 245, 212, 0.5);
    transform: scale(1.15);
}

.pipeline-step.done .step-num {
    background: var(--success);
    color: white;
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.4);
}

.step-num {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pipeline-step span {
    font-size: 0.68rem;
    color: var(--text-muted);
    white-space: nowrap;
    font-weight: 500;
    transition: all var(--transition);
}

.pipeline-step.active span {
    color: var(--primary);
    font-weight: 700;
}

.pipeline-step.done span {
    color: var(--success);
}

.pipeline-connector {
    display: none;
}

.pipeline-progress {
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    margin: 0 20px;
    border-radius: 2px;
}

.pipeline-progress-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--success));
    border-radius: 2px;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(0, 245, 212, 0.5);
}

.pipeline-content {
    padding: 20px;
    min-height: 250px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.1));
}

.pipeline-slide {
    display: none;
    animation: slideIn 0.3s ease;
}

.pipeline-slide.active {
    display: block;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.slide-icon {
    font-size: 2rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 245, 212, 0.15), rgba(0, 245, 212, 0.05));
    border-radius: 12px;
    border: 1px solid rgba(0, 245, 212, 0.2);
}

.slide-info strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 4px;
    color: var(--text);
}

.slide-info small {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.slide-demo {
    background: linear-gradient(145deg, rgba(30, 35, 45, 0.9), rgba(20, 25, 32, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 16px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

/* CRM Demo V2 - with stages */
.crm-demo-v2 {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.crm-stages {
    display: flex;
    gap: 8px;
}

.crm-stage {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: rgba(30, 35, 45, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.crm-stage.done {
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.1);
}

.crm-stage.active {
    border-color: rgba(0, 245, 212, 0.4);
    background: rgba(0, 245, 212, 0.1);
}

.stage-icon {
    font-size: 1.2rem;
}

.stage-info {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
}

.stage-name {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.crm-stage.done .stage-name {
    color: var(--success);
}

.crm-stage.active .stage-name {
    color: var(--primary);
}

.stage-check {
    font-size: 0.7rem;
    color: var(--success);
}

.stage-spinner {
    width: 12px;
    height: 12px;
    border: 2px solid var(--primary-dim);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.crm-client-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(30, 35, 45, 0.8);
    border: 1px solid var(--primary);
    border-radius: 10px;
}

.ccm-avatar {
    font-size: 1.8rem;
}

.ccm-info {
    flex: 1;
}

.ccm-info b {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 4px;
}

.ccm-socials {
    display: flex;
    gap: 4px;
}

.ccm-s {
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.55rem;
    font-weight: 700;
    color: white;
}

.ccm-s.vk { background: var(--vk); }
.ccm-s.tg { background: var(--tg); }
.ccm-s.yt { background: var(--yt); }

.ccm-stats {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Brief Chatbot V2 - Interactive */
.brief-demo-v2 {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chatbot-window {
    background: rgba(20, 25, 32, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px;
    min-height: 160px;
}

.cb-messages {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cb-msg {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.cb-msg.user {
    flex-direction: row-reverse;
}

.cb-avatar {
    font-size: 1.3rem;
}

.cb-bubble {
    padding: 10px 14px;
    background: rgba(0, 245, 212, 0.1);
    border: 1px solid rgba(0, 245, 212, 0.2);
    border-radius: 12px;
    border-top-left-radius: 4px;
    font-size: 0.8rem;
    max-width: 240px;
}

.cb-msg.user .cb-bubble {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--bg);
    border-top-left-radius: 12px;
    border-top-right-radius: 4px;
}

.cb-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-left: 36px;
}

.cb-btn {
    padding: 8px 14px;
    background: rgba(30, 35, 45, 0.9);
    border: 1px solid rgba(0, 245, 212, 0.3);
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--text);
    cursor: pointer;
    transition: all 0.2s ease;
}

.cb-btn:hover {
    background: rgba(0, 245, 212, 0.15);
    border-color: var(--primary);
    transform: translateY(-1px);
}

.brief-progress-v2 {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bpv-track {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.bpv-fill {
    height: 100%;
    width: 20%;
    background: linear-gradient(90deg, var(--primary), var(--success));
    border-radius: 3px;
    transition: width 0.5s ease;
}

.bpv-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    white-space: nowrap;
}

/* Plan Generator V2 - Interactive */
.plan-demo-v2 {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.plan-generator {
    background: rgba(20, 25, 32, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
}

.pg-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: rgba(0, 245, 212, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pg-ai {
    font-size: 0.8rem;
    color: var(--primary);
}

.pg-loader {
    width: 16px;
    height: 16px;
    border: 2px solid var(--primary-dim);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.pg-items {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pg-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(30, 35, 45, 0.6);
    border-radius: 8px;
    opacity: 0.4;
    transform: translateX(-10px);
    transition: all 0.4s ease;
}

.pg-item.generated {
    opacity: 1;
    transform: translateX(0);
}

.pg-item.generating {
    opacity: 0.8;
    border: 1px solid var(--primary);
    animation: itemPulse 1.5s ease-in-out infinite;
}

@keyframes itemPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 245, 212, 0.2); }
    50% { box-shadow: 0 0 0 4px rgba(0, 245, 212, 0); }
}

.pgi-icon {
    font-size: 1.2rem;
}

.pgi-text {
    flex: 1;
}

.pgi-text b {
    display: block;
    font-size: 0.75rem;
    margin-bottom: 2px;
}

.pgi-text small {
    font-size: 0.65rem;
    color: var(--text-muted);
}

.typing-effect b::after {
    content: '|';
    animation: blink 0.8s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.pgi-check {
    color: var(--success);
    font-size: 0.8rem;
}

.plan-stats-v2 {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.psv-item {
    text-align: center;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.psv-num {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    color: var(--primary);
    margin-bottom: 2px;
}

/* Posts Demo V2 - with tabs */
.posts-demo-v2 {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-tabs {
    display: flex;
    gap: 8px;
}

.social-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px;
    background: rgba(30, 35, 45, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.social-tab input {
    display: none;
}

.social-tab:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.social-tab.active {
    border-color: var(--primary);
    background: rgba(0, 245, 212, 0.1);
}

.st-icon {
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    color: white;
}

.st-icon.vk { background: var(--vk); }
.st-icon.tg { background: var(--tg); }
.st-icon.yt { background: var(--yt); }
.st-icon.ig { background: #e1306c; }

.st-check {
    font-size: 0.7rem;
    color: var(--success);
}

.post-previews {
    position: relative;
    min-height: 160px;
}

.post-preview {
    display: none;
    background: rgba(30, 35, 45, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px;
    animation: fadeIn 0.3s ease;
}

.post-preview.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

.pp-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.pp-logo {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
}

.pp-logo.vk { background: var(--vk); }
.pp-logo.tg { background: var(--tg); }
.pp-logo.yt { background: var(--yt); }
.pp-logo.ig { background: #e1306c; }

.pp-name {
    font-size: 0.85rem;
    font-weight: 600;
}

.pp-content {
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.pp-content p {
    margin: 0 0 4px;
}

.pp-image {
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.pp-image.square {
    height: 100px;
}

.pp-video {
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 8px;
}

.pp-play {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    color: #ff0000;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1rem;
}

.pp-dur {
    position: absolute;
    bottom: 6px;
    right: 6px;
    padding: 2px 6px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 4px;
    font-size: 0.65rem;
}

.pp-title {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.pp-buttons {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.pp-btn {
    padding: 6px 12px;
    background: var(--tg);
    border-radius: 6px;
    font-size: 0.7rem;
    color: white;
}

.pp-stats {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* CRM Demo Mini - keep for compatibility */
.crm-demo-mini {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.crm-kanban-mini {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.km-col {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.km-head {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    padding-bottom: 4px;
    border-bottom: 2px solid;
    color: var(--text-muted);
}

.km-card {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
}

.km-card span {
    font-size: 1rem;
}

.km-card b {
    display: block;
    font-size: 0.7rem;
}

.km-card small {
    display: block;
    font-size: 0.6rem;
    color: var(--text-muted);
}

.km-card.new-pulse {
    border-color: #4c6ef5;
    animation: cardPulse 2s ease-in-out infinite;
}

@keyframes cardPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(76, 110, 245, 0.3); }
    50% { box-shadow: 0 0 0 6px rgba(76, 110, 245, 0); }
}

.km-card.done-card {
    border-color: var(--success);
    background: rgba(16, 185, 129, 0.1);
}

.crm-client-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: var(--bg-card);
    border: 1px solid var(--primary);
    border-radius: var(--radius-sm);
}

.client-avatar {
    font-size: 1.5rem;
}

.client-details b {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 4px;
}

.client-socials {
    display: flex;
    gap: 4px;
}

.cs {
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.55rem;
    font-weight: 700;
    color: white;
}

.cs.vk { background: var(--vk); }
.cs.tg { background: var(--tg); }
.cs.yt { background: var(--yt); }

.cs-add {
    width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    background: var(--surface);
    border: 1px dashed var(--border);
    border-radius: 4px;
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Brief Demo */
.brief-demo {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-window {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 160px;
    overflow: hidden;
}

.chat-msg {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.chat-msg.user {
    flex-direction: row-reverse;
}

.bot-avatar {
    font-size: 1.2rem;
}

.msg-bubble {
    padding: 8px 12px;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    max-width: 200px;
}

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

.chat-typing {
    display: flex;
    align-items: center;
    gap: 8px;
}

.typing-dots {
    display: flex;
    gap: 3px;
    padding: 8px 12px;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
}

.typing-dots span {
    width: 5px;
    height: 5px;
    background: var(--text-muted);
    border-radius: 50%;
    animation: typingDot 1.4s ease-in-out infinite;
}

.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingDot {
    0%, 100% { opacity: 0.4; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1); }
}

.brief-progress {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.bp-bar {
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

/* Plan Demo */
.plan-demo {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.plan-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.plan-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
}

.plan-item.generating {
    border: 1px solid var(--warning);
}

.pi-type {
    font-size: 1.2rem;
}

.pi-info {
    flex: 1;
}

.pi-info b {
    display: block;
    font-size: 0.75rem;
    margin-bottom: 2px;
}

.pi-info small {
    font-size: 0.65rem;
    color: var(--text-muted);
}

.pi-status {
    font-size: 0.8rem;
}

.pi-status.ready {
    color: var(--success);
}

.pi-status.gen {
    color: var(--warning);
    animation: spin 1s linear infinite;
}

.plan-summary {
    display: flex;
    justify-content: center;
    gap: 16px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.plan-summary b {
    color: var(--primary);
}

/* Video Demo */
.video-demo {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.video-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px;
}

.vs-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 14px;
    background: rgba(30, 35, 45, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    font-size: 0.7rem;
    color: var(--text-muted);
    position: relative;
    transition: all 0.2s ease;
}

.vs-item span {
    font-size: 1rem;
}

.vs-item i {
    position: absolute;
    top: -3px;
    right: -3px;
    font-size: 0.6rem;
    font-style: normal;
    color: var(--success);
}

.vs-item i.spinner {
    width: 10px;
    height: 10px;
    border: 2px solid var(--primary-dim);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.vs-item.done {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--success);
}

.vs-item.active {
    background: var(--primary-dim);
    border: 1px solid var(--primary);
    color: var(--primary);
}

.vs-arrow {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.video-preview {
    display: flex;
    gap: 10px;
    align-items: center;
}

.vp-player {
    flex: 1;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(20, 25, 35, 0.6));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 1px solid var(--border);
}

.vp-progress {
    position: absolute;
    bottom: 6px;
    left: 6px;
    right: 6px;
    height: 3px;
    background: var(--border);
    border-radius: 2px;
}

.vp-fill {
    width: 35%;
    height: 100%;
    background: var(--primary);
    border-radius: 2px;
}

.vp-play {
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: var(--bg);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.7rem;
}

.vp-time {
    position: absolute;
    bottom: 6px;
    right: 6px;
    font-size: 0.55rem;
    color: var(--text-muted);
}

.vp-models {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.vm {
    padding: 6px 10px;
    background: rgba(30, 35, 45, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: all 0.2s ease;
}

.vm:hover {
    border-color: rgba(0, 245, 212, 0.3);
}

.vm.active {
    border-color: var(--primary);
    background: rgba(0, 245, 212, 0.15);
    color: var(--primary);
    box-shadow: 0 0 10px rgba(0, 245, 212, 0.2);
}

/* Posts Demo */
.posts-demo .posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.post-card {
    background: rgba(30, 35, 45, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 12px;
    border-top: 3px solid;
    transition: all 0.2s ease;
}

.post-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.12);
}

.post-card.vk { border-color: var(--vk); }
.post-card.tg { border-color: var(--tg); }
.post-card.ig { border-color: #e1306c; }

.pc-head {
    margin-bottom: 6px;
}

.pc-head span {
    font-size: 0.55rem;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 3px;
    color: white;
}

.post-card.vk .pc-head span { background: var(--vk); }
.post-card.tg .pc-head span { background: var(--tg); }
.post-card.ig .pc-head span { background: #e1306c; }

.pc-text {
    margin-bottom: 6px;
}

.pc-line {
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    margin-bottom: 3px;
}

.pc-line.short {
    width: 60%;
}

.pc-img {
    height: 35px;
    background: var(--surface);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.pc-img.square {
    height: 50px;
}

.pc-btn {
    font-size: 0.55rem;
    background: var(--tg);
    color: white;
    padding: 3px 6px;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 6px;
}

.pc-stats {
    font-size: 0.55rem;
    color: var(--text-muted);
}

/* SEO Demo */
.seo-demo {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.seo-keywords-mini {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.skm {
    display: flex;
    justify-content: space-between;
    padding: 6px 8px;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
}

.skm b {
    color: var(--primary);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
}

.seo-article-mini {
    background: var(--bg-card);
    padding: 10px;
    border-radius: var(--radius-sm);
}

.sam-title {
    height: 10px;
    width: 70%;
    background: var(--text-secondary);
    border-radius: 2px;
    margin-bottom: 8px;
}

.sam-lines {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 8px;
}

.sam-lines div {
    height: 4px;
    background: var(--border);
    border-radius: 2px;
}

.sam-lines div:nth-child(1) { width: 100%; }
.sam-lines div:nth-child(2) { width: 90%; }
.sam-lines div:nth-child(3) { width: 80%; }

.sam-img {
    height: 30px;
    background: linear-gradient(135deg, var(--primary-dim), rgba(16, 185, 129, 0.15));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.seo-stats-mini {
    display: flex;
    gap: 12px;
    font-size: 0.65rem;
    color: var(--text-muted);
}

.wp-badge {
    background: #21759b;
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: 700;
}

/* Approval Demo */
.approval-demo {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.approval-calendar {
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    padding: 10px;
}

.ac-header {
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.ac-items {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ac-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    background: var(--surface);
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    border-left: 3px solid var(--border);
}

.ac-item span {
    font-size: 0.9rem;
}

.ac-item b {
    display: block;
    font-size: 0.7rem;
}

.ac-item small {
    display: block;
    font-size: 0.6rem;
    color: var(--text-muted);
}

.ac-item.approved {
    border-color: var(--success);
}

.ac-item.approved small {
    color: var(--success);
}

.ac-item.pending {
    border-color: var(--warning);
}

.ac-item.rejected {
    border-color: #ef4444;
}

.ac-item.rejected small {
    color: #ef4444;
}

.approval-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.approval-link code {
    background: var(--bg-card);
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.65rem;
    color: var(--primary);
}

/* Autopost Demo */
.autopost-demo {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ap-calendar {
    display: flex;
    gap: 8px;
}

.ap-day {
    flex: 1;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    padding: 8px;
    text-align: center;
}

.ap-day.active {
    border: 1px solid var(--primary);
}

.ap-date {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.ap-posts {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ap-post {
    padding: 3px 6px;
    border-radius: 3px;
    font-size: 0.55rem;
    font-weight: 600;
    color: white;
}

.ap-post.vk { background: var(--vk); }
.ap-post.tg { background: var(--tg); }
.ap-post.yt { background: var(--yt); }
.ap-post.publishing {
    background: var(--primary);
    animation: pulse 1s ease-in-out infinite;
}

.ap-stats {
    display: flex;
    justify-content: center;
    gap: 16px;
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Telegram Demo */
.tg-demo .tg-chat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tg-msg {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.tg-bot {
    font-size: 1.2rem;
}

.tg-bubble {
    background: var(--bg-card);
    padding: 8px 10px;
    border-radius: var(--radius-sm);
    max-width: 250px;
}

.tg-bubble b {
    display: block;
    font-size: 0.7rem;
    color: var(--tg);
    margin-bottom: 4px;
}

.tg-bubble p {
    font-size: 0.75rem;
    margin: 0;
}

.tg-bubble small {
    display: block;
    font-size: 0.6rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.tg-bubble.typing {
    display: flex;
    gap: 4px;
    padding: 10px 14px;
}

.tg-bubble.typing span {
    width: 6px;
    height: 6px;
    background: var(--text-muted);
    border-radius: 50%;
    animation: typingDot 1.4s ease-in-out infinite;
}

.tg-bubble.typing span:nth-child(2) { animation-delay: 0.2s; }
.tg-bubble.typing span:nth-child(3) { animation-delay: 0.4s; }

/* Video Generator Demo */
.video-gen-demo {
    padding: 14px;
}

.vg-step {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px;
    background: var(--surface);
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    color: var(--text-muted);
    position: relative;
    min-width: 70px;
}

.vg-step.active {
    background: var(--primary-dim);
    color: var(--primary);
}

.vg-icon {
    font-size: 1.3rem;
}

.vg-check {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 16px;
    height: 16px;
    background: var(--success);
    color: white;
    border-radius: 50%;
    font-size: 0.6rem;
    display: grid;
    place-items: center;
}

.vg-spinner {
    width: 14px;
    height: 14px;
    border: 2px solid var(--primary-dim);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: absolute;
    top: -4px;
    right: -4px;
}

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

.vg-arrow {
    display: inline-block;
    color: var(--text-muted);
    margin: 0 8px;
    font-size: 1rem;
}

.vg-preview {
    margin-top: 14px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.vg-player {
    flex: 1;
    height: 80px;
    background: linear-gradient(135deg, var(--surface), var(--bg-elevated));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 1px solid var(--border);
}

.vg-player span {
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: var(--bg);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.8rem;
}

.player-bar {
    position: absolute;
    bottom: 8px;
    left: 8px;
    right: 8px;
    height: 4px;
    background: var(--border);
    border-radius: 2px;
}

.player-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 35%;
    background: var(--primary);
    border-radius: 2px;
}

.vg-models {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.model {
    padding: 6px 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
}

.model.active {
    border-color: var(--primary);
    background: var(--primary-dim);
    color: var(--primary);
}

/* SEO Generator Demo */
.seo-gen-demo {
    padding: 14px;
}

.seo-keywords {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}

.kw-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
    background: var(--surface);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
}

.kw-item strong {
    color: var(--primary);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
}

.seo-article {
    background: var(--surface);
    padding: 12px;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
}

.article-line {
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    margin-bottom: 6px;
}

.article-line.w100 { width: 100%; }
.article-line.w90 { width: 90%; }
.article-line.w80 { width: 80%; }
.article-line.w70 { width: 70%; }

.article-img {
    height: 40px;
    background: linear-gradient(135deg, var(--primary-dim), rgba(16, 185, 129, 0.15));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--primary);
    margin: 8px 0;
}

.seo-meta {
    display: flex;
    gap: 12px;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.seo-meta .wp {
    background: #21759b;
    color: white;
    padding: 3px 8px;
    border-radius: 999px;
    font-weight: 600;
}

/* Posts Generator Demo */
.posts-gen-demo {
    padding: 14px;
}

.post-platforms {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 12px;
}

.pp-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px;
    text-align: center;
}

.pp-item.vk { border-top: 3px solid var(--vk); }
.pp-item.tg { border-top: 3px solid var(--tg); }
.pp-item.yt { border-top: 3px solid var(--yt); }

.pp-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    border-radius: 5px;
    font-size: 0.6rem;
    font-weight: 700;
    color: white;
    line-height: 24px;
    margin-bottom: 8px;
}

.pp-item.vk .pp-icon { background: var(--vk); }
.pp-item.tg .pp-icon { background: var(--tg); }
.pp-item.yt .pp-icon { background: var(--yt); }

.pp-preview {
    height: 50px;
    margin-bottom: 6px;
}

.pp-line {
    height: 5px;
    background: var(--border);
    border-radius: 2px;
    margin-bottom: 4px;
}

.pp-line.short {
    width: 60%;
}

.pp-btn {
    font-size: 0.6rem;
    background: var(--tg);
    color: white;
    padding: 3px 6px;
    border-radius: 3px;
    display: inline-block;
    margin-top: 4px;
}

.pp-preview.video {
    background: linear-gradient(135deg, var(--surface), var(--bg-card));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pp-preview.video span {
    width: 20px;
    height: 20px;
    background: var(--yt);
    color: white;
    border-radius: 50%;
    font-size: 0.5rem;
    display: grid;
    place-items: center;
}

.pp-item small {
    font-size: 0.65rem;
    color: var(--text-muted);
}

.ai-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px;
    background: var(--primary-dim);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    color: var(--primary);
}

/* Content Plan Demo */
.plan-gen-demo {
    padding: 14px;
}

.plan-calendar {
    background: var(--surface);
    border-radius: var(--radius-sm);
    padding: 12px;
    margin-bottom: 12px;
}

.cal-header {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}

.cal-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
}

.cal-day {
    font-size: 0.6rem;
    color: var(--text-muted);
    text-align: center;
    padding: 4px;
}

.cal-cell {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--text-muted);
    background: var(--bg-card);
    border-radius: 4px;
    position: relative;
}

.cal-cell.has-post {
    background: var(--bg-elevated);
    color: var(--text);
}

.cal-cell.has-post span {
    font-weight: 600;
}

.cal-cell.active {
    border: 2px solid var(--primary);
}

.cal-cell i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    position: absolute;
    bottom: 3px;
}

.cal-cell i:nth-child(2) { left: calc(50% - 3px); }
.cal-cell i:nth-child(3) { left: calc(50% + 2px); }

.cal-cell i.vk { background: var(--vk); }
.cal-cell i.tg { background: var(--tg); }
.cal-cell i.yt { background: var(--yt); }

.plan-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.ps-item {
    text-align: center;
}

.ps-item strong {
    display: block;
    font-size: 1.2rem;
    font-family: 'JetBrains Mono', monospace;
    color: var(--primary);
}

.ps-item span {
    font-size: 0.65rem;
    color: var(--text-muted);
}

/* ========================================
   NEW PIPELINE SLIDE STYLES V3
   ======================================== */

/* CRM Demo V3 - Kanban with clickable cards */
.crm-demo-v3 {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.crm-kanban-mini {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.kanban-col {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.kanban-col-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 8px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-secondary);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.col-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.col-dot.new { background: #4c6ef5; }
.col-dot.progress { background: #f59e0b; }
.col-dot.done { background: var(--success); }

.client-card-mini {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    background: rgba(30, 35, 45, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.client-card-mini:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(0, 245, 212, 0.15);
}

.client-card-mini.active {
    border-color: #f59e0b;
    animation: cardGlow 2s ease-in-out infinite;
}

@keyframes cardGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.3); }
    50% { box-shadow: 0 0 12px 2px rgba(245, 158, 11, 0.2); }
}

.client-card-mini.done {
    border-color: var(--success);
    background: rgba(16, 185, 129, 0.1);
}

.client-card-mini .ccm-avatar {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: white;
}

.client-card-mini .ccm-name {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.client-card-mini .ccm-badges {
    display: flex;
    gap: 3px;
}

.badge-vk, .badge-tg, .badge-yt, .badge-ig {
    padding: 2px 4px;
    border-radius: 3px;
    font-size: 0.5rem;
    font-weight: 700;
    color: white;
}

.badge-vk { background: var(--vk); }
.badge-tg { background: var(--tg); }
.badge-yt { background: var(--yt); }
.badge-ig { background: #e1306c; }

.gen-indicator {
    display: flex;
    gap: 3px;
    justify-content: center;
}

.gen-indicator span {
    width: 4px;
    height: 4px;
    background: #f59e0b;
    border-radius: 50%;
    animation: genDot 1.4s ease-in-out infinite;
}

.gen-indicator span:nth-child(2) { animation-delay: 0.2s; }
.gen-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes genDot {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

.done-check {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 16px;
    height: 16px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.55rem;
    color: white;
}

.crm-hint {
    text-align: center;
    font-size: 0.7rem;
    color: var(--text-muted);
    padding-top: 4px;
}

/* Client Popup */
.client-popup-overlay,
.post-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.client-popup-overlay.active,
.post-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.client-popup,
.post-popup {
    width: 90%;
    max-width: 420px;
    max-height: 85vh;
    overflow-y: auto;
    background: linear-gradient(145deg, rgba(25, 30, 40, 0.98), rgba(15, 20, 28, 0.99));
    border: 1px solid rgba(0, 245, 212, 0.2);
    border-radius: 20px;
    padding: 24px;
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 245, 212, 0.1);
}

.client-popup-overlay.active .client-popup,
.post-popup-overlay.active .post-popup {
    transform: scale(1) translateY(0);
}

.popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text);
}

.client-popup {
    position: relative;
}

.popup-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.popup-avatar {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
}

.popup-title h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 4px;
}

.popup-type {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.popup-status {
    margin-left: auto;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.popup-status.new {
    background: rgba(76, 110, 245, 0.2);
    color: #4c6ef5;
}

.popup-status.progress {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.popup-status.done {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success);
}

.popup-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.popup-section h4 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.popup-channels {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.popup-ch {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(30, 35, 45, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    font-size: 0.85rem;
}

.popup-ch.connected {
    border-color: rgba(16, 185, 129, 0.3);
}

.ch-icon {
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
}

.ch-icon.vk { background: var(--vk); }
.ch-icon.tg { background: var(--tg); }
.ch-icon.yt { background: var(--yt); }
.ch-icon.ig { background: #e1306c; }

.ch-ok {
    margin-left: auto;
    color: var(--success);
}

.ch-add {
    margin-left: auto;
    width: 24px;
    height: 24px;
    border: 1px dashed var(--border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.popup-brief {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.brief-row {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 8px 10px;
    background: rgba(30, 35, 45, 0.6);
    border-radius: 8px;
}

.brief-row span {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.brief-row b {
    font-size: 0.8rem;
    font-weight: 600;
}

.popup-plans {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.popup-plan {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(30, 35, 45, 0.8);
    border-radius: 10px;
}

.plan-ic {
    font-size: 1.3rem;
}

.popup-plan > div {
    flex: 1;
}

.popup-plan b {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 2px;
}

.popup-plan small {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.plan-progress {
    width: 60px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.plan-progress div {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--success));
    border-radius: 3px;
    transition: width 0.5s ease;
}

.plan-progress.done div {
    background: var(--success);
}

.popup-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.popup-stats .ps-item {
    text-align: center;
}

.popup-stats .ps-val {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    color: var(--primary);
}

.popup-stats .ps-lbl {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Video Demo V3 - Detailed Pipeline */
.video-demo-v3 {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.vgen-pipeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.vgen-step {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    background: rgba(30, 35, 45, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    transition: all 0.2s ease;
}

.vgen-step.done {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
}

.vgen-step.active {
    background: rgba(0, 245, 212, 0.1);
    border-color: rgba(0, 245, 212, 0.4);
}

.vgen-num {
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--text-muted);
    flex-shrink: 0;
}

.vgen-step.done .vgen-num {
    background: var(--success);
    color: white;
}

.vgen-step.active .vgen-num {
    background: var(--primary);
    color: var(--bg);
}

.vgen-content {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    min-width: 0;
}

.vgen-icon {
    font-size: 0.9rem;
}

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

.vgen-info b {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vgen-info small {
    font-size: 0.55rem;
    color: var(--text-muted);
}

.vgen-step.done .vgen-info b { color: var(--success); }
.vgen-step.active .vgen-info b { color: var(--primary); }

.vgen-check {
    font-size: 0.7rem;
    color: var(--success);
}

.vgen-spinner {
    width: 12px;
    height: 12px;
    border: 2px solid var(--primary-dim);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.vgen-preview {
    background: rgba(20, 25, 32, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 12px;
}

.vgen-segments {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}

.seg {
    width: 50px;
    height: 36px;
    background: rgba(30, 35, 45, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    font-size: 0.65rem;
    color: var(--text-muted);
}

.seg span {
    font-weight: 700;
}

.seg.done {
    background: rgba(16, 185, 129, 0.15);
    border-color: var(--success);
    color: var(--success);
}

.seg.active {
    background: rgba(0, 245, 212, 0.15);
    border-color: var(--primary);
    color: var(--primary);
}

.seg.active i {
    width: 8px;
    height: 8px;
    border: 2px solid var(--primary-dim);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.vgen-model {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.vm-label {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.vm-active {
    padding: 4px 10px;
    background: rgba(0, 245, 212, 0.15);
    border: 1px solid var(--primary);
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary);
}

.vm-alt {
    font-size: 0.65rem;
    color: var(--text-muted);
}

.vgen-progress {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vgp-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.vgp-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--success));
    border-radius: 3px;
}

.vgp-text {
    font-size: 0.65rem;
    color: var(--text-muted);
    white-space: nowrap;
}

/* Articles Demo V3 - SEO Pipeline */
.articles-demo-v3 {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.article-pipeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}

.art-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 10px 6px;
    background: rgba(30, 35, 45, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    text-align: center;
    transition: all 0.2s ease;
    position: relative;
}

.art-stage.done {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
}

.art-stage.active {
    background: rgba(0, 245, 212, 0.1);
    border-color: rgba(0, 245, 212, 0.4);
}

.art-icon {
    font-size: 1.2rem;
}

.art-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.art-title {
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--text);
}

.art-desc {
    font-size: 0.55rem;
    color: var(--text-muted);
}

.art-stage.done .art-title { color: var(--success); }
.art-stage.active .art-title { color: var(--primary); }

.art-check {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 14px;
    height: 14px;
    background: var(--success);
    border-radius: 50%;
    font-size: 0.5rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.art-spinner {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 14px;
    height: 14px;
    border: 2px solid var(--primary-dim);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.article-preview {
    background: rgba(20, 25, 32, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
}

.ap-header {
    padding: 10px 12px;
    background: rgba(0, 245, 212, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ap-title {
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text);
}

.ap-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.ap-tag {
    padding: 2px 6px;
    background: rgba(0, 245, 212, 0.1);
    border-radius: 4px;
    font-size: 0.55rem;
    color: var(--primary);
}

.ap-content {
    display: flex;
    gap: 12px;
    padding: 12px;
}

.ap-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ap-line {
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
}

.ap-line.short {
    width: 70%;
}

.ap-image {
    width: 80px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 245, 212, 0.1), rgba(16, 185, 129, 0.1));
    border: 1px solid rgba(0, 245, 212, 0.2);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.ap-img-icon {
    font-size: 1rem;
}

.ap-img-text {
    font-size: 0.5rem;
    color: var(--primary);
}

.ap-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.2);
}

.ap-meta {
    display: flex;
    gap: 10px;
    font-size: 0.65rem;
    color: var(--text-muted);
}

.ap-wp {
    display: flex;
    align-items: center;
    gap: 6px;
}

.wp-icon {
    width: 20px;
    height: 20px;
    background: #21759b;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
}

.wp-status {
    font-size: 0.65rem;
    color: var(--primary);
}

/* Autopost Calendar V3 */
.autopost-demo-v3 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.calendar-mini {
    background: rgba(20, 25, 32, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
}

.cal-mini-header {
    padding: 10px 12px;
    background: rgba(0, 245, 212, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
}

.cal-mini-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    padding: 8px;
}

.cal-mini-day {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: var(--text-muted);
    border-radius: 6px;
    position: relative;
    transition: all 0.2s ease;
}

.cal-mini-day.header {
    font-size: 0.55rem;
    font-weight: 600;
    color: var(--text-secondary);
    aspect-ratio: auto;
    padding: 4px 0;
}

.cal-mini-day.has-post {
    background: rgba(30, 35, 45, 0.8);
    color: var(--text);
    cursor: pointer;
}

.cal-mini-day.has-post:hover {
    background: rgba(0, 245, 212, 0.15);
    border-color: var(--primary);
    transform: scale(1.05);
}

.cal-mini-day.today {
    background: rgba(0, 245, 212, 0.2);
    color: var(--primary);
    font-weight: 700;
}

.cal-mini-day.scheduled {
    opacity: 0.6;
}

.day-posts {
    display: flex;
    gap: 2px;
    margin-top: 2px;
}

.dp {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.dp.vk { background: var(--vk); }
.dp.tg { background: var(--tg); }
.dp.yt { background: var(--yt); }
.dp.ig { background: #e1306c; }

.cal-legend {
    display: flex;
    justify-content: center;
    gap: 12px;
    font-size: 0.65rem;
    color: var(--text-muted);
}

.cal-legend span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.leg-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.leg-dot.vk { background: var(--vk); }
.leg-dot.tg { background: var(--tg); }
.leg-dot.yt { background: var(--yt); }
.leg-dot.ig { background: #e1306c; }

.cal-stats {
    display: flex;
    justify-content: center;
    gap: 16px;
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Post Popup */
.post-popup {
    position: relative;
    max-width: 360px;
}

.post-popup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pph-icon {
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
}

.pph-icon.vk { background: var(--vk); }
.pph-icon.tg { background: var(--tg); }
.pph-icon.yt { background: var(--yt); }
.pph-icon.ig { background: #e1306c; }

.pph-info {
    flex: 1;
}

.pph-info b {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.pph-info span {
    font-size: 0.75rem;
    color: var(--success);
}

.post-popup-content {
    margin-bottom: 16px;
}

.ppc-image {
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.ppc-text {
    font-size: 0.9rem;
    line-height: 1.5;
}

.ppc-text p {
    margin: 0 0 8px;
}

.ppc-hashtags {
    color: var(--primary);
    font-size: 0.8rem;
}

.post-popup-stats {
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
}

/* Mobile Hero */
@media (max-width: 1024px) {
    .hero-compact {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 90px 24px 40px;
        min-height: auto;
    }
    
    .hero-left {
        order: 1;
        text-align: center;
        align-items: center;
    }
    
    .hero-right {
        order: 2;
    }
    
    .hero-desc {
        max-width: 100%;
    }
    
    .hero-mini-stats {
        justify-content: center;
    }
    
    .hero-highlights {
        margin: 12px 0;
    }
    
    .highlight-item {
        padding: 8px 12px;
    }
    
    .highlight-icon {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
    }
    
    .highlight-text {
        font-size: 0.85rem;
    }
    
    .pipeline-steps {
        padding: 14px 10px;
        gap: 2px;
        justify-content: flex-start;
    }
    
    .pipeline-steps::before {
        display: none;
    }
    
    .pipeline-step {
        min-width: 48px;
        padding: 8px 6px;
    }
    
    .pipeline-step span {
        font-size: 0.55rem;
    }
    
    .step-num {
        width: 24px;
        height: 24px;
        font-size: 0.65rem;
    }
    
    .pipeline-content {
        padding: 14px;
        min-height: 240px;
    }
    
    .slide-header {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .crm-kanban-mini {
        grid-template-columns: 1fr;
    }
    
    .video-steps {
        gap: 2px;
    }
    
    .posts-demo .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .ap-calendar {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .hero-compact {
        padding: 80px 16px 32px;
    }
    
    .hero-title-compact {
        font-size: 1.6rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-mini-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
    
    .mini-stat {
        flex: 0 0 auto;
    }
    
    .feature-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .mini-kanban {
        grid-template-columns: 1fr;
    }
    
    .post-platforms {
        grid-template-columns: 1fr;
    }
    
    .cal-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Sections */
.section {
    position: relative;
    z-index: 1;
    padding: 100px 48px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-dim);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 999px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: all var(--transition);
}

.feature-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.feature-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--bg-card), var(--bg-elevated));
    border-color: var(--primary);
    box-shadow: 0 0 40px rgba(0, 245, 212, 0.1);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    background: var(--surface);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
}

.gradient-bg-icon {
    background: linear-gradient(135deg, var(--primary-dim), var(--secondary-dim));
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.feature-demo {
    margin-top: 20px;
}

.mini-kanban {
    display: flex;
    gap: 8px;
}

.mini-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mini-card {
    height: 24px;
    background: var(--surface);
    border-radius: 4px;
}

.mini-card.active {
    background: var(--primary-dim);
    border: 1px solid var(--primary);
}

.mini-card.done {
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid var(--success);
}

/* CRM Section */
.crm-section {
    padding: 100px 24px;
    max-width: 100%;
}

.crm-demo {
    display: grid;
    grid-template-columns: 60px 1fr 320px;
    gap: 0;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-width: 1400px;
    margin: 0 auto;
}

.crm-sidebar {
    background: var(--bg-card);
    border-right: 1px solid var(--border);
    padding: 16px 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.crm-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 8px;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    font-size: 0.65rem;
    cursor: pointer;
    transition: all var(--transition);
}

.crm-nav-item svg {
    width: 20px;
    height: 20px;
}

.crm-nav-item.active {
    background: var(--primary-dim);
    color: var(--primary);
}

.crm-nav-item:hover {
    background: var(--surface);
    color: var(--text);
}

.crm-main {
    padding: 20px;
    overflow-x: auto;
}

.crm-board {
    display: grid;
    grid-template-columns: repeat(4, minmax(200px, 1fr));
    gap: 16px;
    min-width: 700px;
}

.board-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.board-column-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: var(--surface);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-dot.new { background: var(--vk); }
.status-dot.progress { background: var(--warning); }
.status-dot.generating { background: var(--secondary); }
.status-dot.done { background: var(--success); }

.board-column-header .count {
    margin-left: auto;
    background: var(--bg-card);
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.board-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.board-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px;
    cursor: pointer;
    transition: all var(--transition);
}

.board-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.board-card.highlighted {
    border-color: var(--warning);
    animation: highlightPulse 2s ease-in-out infinite;
}

@keyframes highlightPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.2); }
    50% { box-shadow: 0 0 20px 5px rgba(245, 158, 11, 0.15); }
}

.board-card.generating {
    border-color: var(--secondary);
}

.board-card.done {
    border-color: var(--success);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.card-avatar {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.card-title {
    display: flex;
    flex-direction: column;
}

.card-title span {
    font-size: 0.9rem;
    font-weight: 600;
}

.card-title small {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.card-socials {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
}

.social-badge {
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    color: white;
}

.social-badge.vk { background: var(--vk); }
.social-badge.tg { background: var(--tg); }
.social-badge.yt { background: var(--yt); }
.social-badge.ig { background: var(--ig); }

.card-footer {
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-status {
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--surface);
    color: var(--text-secondary);
}

.card-status.pending { background: var(--primary-dim); color: var(--primary); }
.card-status.filling { background: rgba(245, 158, 11, 0.15); color: var(--warning); }
.card-status.success { background: rgba(16, 185, 129, 0.15); color: var(--success); }

.typing-indicator {
    display: flex;
    gap: 3px;
}

.typing-indicator span {
    width: 5px;
    height: 5px;
    background: var(--warning);
    border-radius: 50%;
    animation: typing 1.4s ease-in-out infinite;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.generation-progress {
    margin-top: 8px;
}

.progress-bar {
    height: 4px;
    background: var(--surface);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 8px;
}

.generation-progress span {
    font-size: 0.75rem;
    color: var(--secondary);
}

/* CRM Panel */
.crm-panel {
    background: var(--bg-card);
    border-left: 1px solid var(--border);
    padding: 20px;
}

.panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.panel-header h3 {
    font-size: 1rem;
    font-weight: 600;
}

.panel-badge {
    padding: 4px 10px;
    background: rgba(16, 185, 129, 0.15);
    color: var(--success);
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 999px;
}

.client-profile {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.profile-avatar {
    width: 56px;
    height: 56px;
    border-radius: 12px;
}

.profile-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.profile-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.panel-section {
    margin-bottom: 24px;
}

.panel-section h5 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 12px;
}

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

.channel {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: var(--surface);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
}

.channel.connected {
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.channel-icon {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 700;
    color: white;
}

.channel-icon.vk { background: var(--vk); }
.channel-icon.tg { background: var(--tg); }
.channel-icon.yt { background: var(--yt); }
.channel-icon.ig { background: var(--ig); }

.channel-status {
    margin-left: auto;
    color: var(--success);
}

.connect-btn {
    margin-left: auto;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    border: 1px dashed var(--border);
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition);
}

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

.content-plans {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.plan-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--surface);
    border-radius: var(--radius-sm);
}

.plan-icon {
    font-size: 1.5rem;
}

.plan-info span {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
}

.plan-info small {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Video Section */
.video-section {
    background: linear-gradient(180deg, transparent, var(--bg-elevated), transparent);
}

.video-demo {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.video-workflow {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    overflow-x: auto;
    padding: 20px 0;
}

.workflow-step {
    flex: 1;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step-number {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.workflow-step.active .step-number {
    background: var(--primary);
    color: var(--bg);
    border-color: var(--primary);
}

.step-content {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
}

.step-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.step-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.step-visual {
    background: var(--bg-elevated);
    border-radius: var(--radius-sm);
    padding: 12px;
}

.step-visual.script {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
}

.script-line {
    display: flex;
    gap: 12px;
    padding: 4px 0;
    color: var(--text-secondary);
}

.line-num {
    color: var(--text-muted);
}

.script-line.typing {
    color: var(--primary);
}

.cursor {
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.step-visual.segments {
    display: flex;
    gap: 8px;
}

.segment {
    flex: 1;
    text-align: center;
}

.segment-preview {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--surface), var(--bg-card));
    border-radius: 6px;
    margin-bottom: 6px;
}

.segment-preview.generating {
    background: linear-gradient(135deg, var(--secondary-dim), var(--primary-dim));
    animation: generating 1.5s ease-in-out infinite;
}

@keyframes generating {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.segment span {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.step-visual.ai-models {
    display: flex;
    gap: 10px;
}

.model-badge {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.model-badge.active {
    border-color: var(--primary);
    background: var(--primary-dim);
    color: var(--primary);
}

.model-logo {
    font-size: 1.2rem;
}

.step-visual.final {
    text-align: center;
}

.video-preview {
    position: relative;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--surface), var(--bg-card));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    background: var(--primary);
    color: var(--bg);
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
}

.video-timeline {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    gap: 4px;
    height: 4px;
}

.timeline-segment {
    flex: 1;
    border-radius: 2px;
}

.timeline-segment.s1 { background: var(--primary); }
.timeline-segment.s2 { background: var(--success); }
.timeline-segment.s3 { background: #00d4aa; }

.workflow-connector {
    display: flex;
    align-items: center;
    padding-top: 48px;
    color: var(--text-muted);
}

.workflow-connector svg {
    width: 24px;
    height: 24px;
}

.video-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.video-feature {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.feature-icon-sm {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-text h5 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
}

/* SEO Section */
.seo-section {
    background: linear-gradient(180deg, var(--bg-elevated), transparent);
}

.seo-demo {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.seo-pipeline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.seo-stage {
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-radius: var(--radius);
    transition: all var(--transition);
}

.seo-stage.active,
.seo-stage:hover {
    background: var(--surface);
}

.stage-icon {
    font-size: 2rem;
}

.stage-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.stage-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.stage-visual {
    background: var(--bg-elevated);
    border-radius: var(--radius-sm);
    padding: 12px;
}

.stage-visual.keywords {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.keyword-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: var(--surface);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
}

.keyword-item.high .kw-volume {
    color: var(--primary);
    font-weight: 600;
}

.keyword-item.medium .kw-volume {
    color: var(--success);
}

.keyword-item.adding {
    color: var(--text-muted);
    font-style: italic;
    animation: pulse 2s ease-in-out infinite;
}

.kw-volume {
    color: var(--text-muted);
    font-size: 0.75rem;
}

.stage-visual.competitors {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.competitor-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
}

.comp-pos {
    width: 20px;
    text-align: center;
    color: var(--text-muted);
}

.competitor-row.highlight .comp-pos {
    color: var(--primary);
}

.comp-name {
    width: 90px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.comp-bar {
    flex: 1;
    height: 8px;
    background: var(--surface);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.comp-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: var(--width);
    background: var(--text-muted);
    border-radius: 4px;
    transition: width 1s ease;
}

.competitor-row.highlight .comp-bar::after {
    background: linear-gradient(90deg, var(--primary), var(--success));
}

.comp-bar.growing::after {
    animation: growBar 2s ease-in-out infinite;
}

@keyframes growBar {
    0%, 100% { width: var(--width); }
    50% { width: calc(var(--width) + 15%); }
}

.stage-visual.clusters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cluster {
    padding: 8px 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cluster.active {
    border-color: var(--primary);
    background: var(--primary-dim);
}

.cluster-name {
    font-weight: 500;
}

.cluster-count {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.stage-visual.article-preview {
    padding: 16px;
}

.article-header {
    margin-bottom: 12px;
}

.article-title-line {
    height: 16px;
    width: 80%;
    background: var(--text-secondary);
    border-radius: 4px;
    margin-bottom: 8px;
}

.article-meta {
    display: flex;
    gap: 12px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.article-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.text-line {
    height: 8px;
    background: var(--surface);
    border-radius: 2px;
}

.text-line.w-full { width: 100%; }
.text-line.w-90 { width: 90%; }
.text-line.w-80 { width: 80%; }
.text-line.w-70 { width: 70%; }

.article-image {
    height: 60px;
    background: linear-gradient(135deg, var(--primary-dim), var(--secondary-dim));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 8px 0;
    font-size: 0.8rem;
    color: var(--primary);
}

.stage-visual.wordpress {
    padding: 16px;
}

.wp-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    font-weight: 500;
}

.wp-logo {
    width: 24px;
    height: 24px;
    background: #21759b;
    color: white;
    border-radius: 4px;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 0.8rem;
}

.wp-status {
    margin-left: auto;
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 999px;
}

.wp-status.published {
    background: rgba(16, 185, 129, 0.15);
    color: var(--success);
}

.wp-stats {
    display: flex;
    gap: 16px;
}

.wp-stat {
    text-align: center;
}

.wp-stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.wp-stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.seo-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.connector-line {
    width: 2px;
    height: 40px;
    background: var(--border);
}

.connector-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    margin: 4px 0;
}

.seo-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.seo-feature {
    text-align: center;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.seo-feature:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.seo-feature-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.seo-feature h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.seo-feature p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Social Media Section */
.social-section {
    background: linear-gradient(180deg, transparent, var(--bg-elevated), transparent);
}

.social-demo {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.social-platforms {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.platform-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    transition: all var(--transition);
}

.platform-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.platform-card.vk { border-top: 3px solid var(--vk); }
.platform-card.telegram { border-top: 3px solid var(--tg); }
.platform-card.youtube { border-top: 3px solid var(--yt); }
.platform-card.instagram { border-top: 3px solid var(--ig); }

.platform-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.platform-icon {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
}

.platform-card.vk .platform-icon { background: var(--vk); }
.platform-card.telegram .platform-icon { background: var(--tg); }
.platform-card.youtube .platform-icon { background: var(--yt); }
.platform-card.instagram .platform-icon { background: var(--ig); }

.platform-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.platform-status {
    margin-left: auto;
    font-size: 0.8rem;
}

.platform-status.connected {
    color: var(--success);
}

.post-preview {
    background: var(--surface);
    border-radius: var(--radius-sm);
    padding: 12px;
    margin-bottom: 12px;
}

.post-content {
    margin-bottom: 10px;
}

.post-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 10px;
}

.post-text .text-line {
    height: 8px;
    width: 100%;
    background: var(--border);
    border-radius: 2px;
}

.post-text .text-line.short {
    width: 60%;
}

.post-image {
    height: 80px;
    background: linear-gradient(135deg, var(--surface), var(--bg-card));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.post-buttons {
    display: flex;
    gap: 8px;
}

.tg-btn {
    padding: 6px 12px;
    background: var(--tg);
    color: white;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
}

.post-stats {
    display: flex;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.video-post .video-thumb {
    height: 80px;
    background: linear-gradient(135deg, var(--surface), var(--bg-card));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 10px;
}

.video-thumb span:first-child {
    width: 32px;
    height: 32px;
    background: var(--yt);
    color: white;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.video-duration {
    position: absolute;
    bottom: 4px;
    right: 4px;
    padding: 2px 6px;
    background: rgba(0,0,0,0.8);
    border-radius: 4px;
    font-size: 0.7rem;
}

.video-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 8px;
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    margin-bottom: 10px;
}

.insta-img {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--surface), var(--bg-card));
    border-radius: 4px;
}

.platform-schedule {
    font-size: 0.8rem;
    color: var(--text-muted);
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.platform-schedule.add-platform {
    color: var(--primary);
    cursor: pointer;
}

.social-ai-panel {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: sticky;
    top: 100px;
}

.ai-panel-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.ai-icon {
    font-size: 1.5rem;
}

.ai-panel-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

.ai-generation-demo {
    margin-bottom: 24px;
}

.gen-input {
    background: var(--surface);
    padding: 12px;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
}

.gen-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 4px;
}

.gen-value {
    font-weight: 500;
}

.gen-arrow {
    text-align: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin: 12px 0;
    animation: bounceDown 1s ease-in-out infinite;
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

.gen-outputs {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gen-output {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: var(--surface);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
}

.output-platform {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 700;
    color: white;
}

.output-platform.vk { background: var(--vk); }
.output-platform.tg { background: var(--tg); }
.output-platform.yt { background: var(--yt); }

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

.ai-features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ai-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.ai-feature-item .check {
    color: var(--success);
    font-weight: 600;
}

@media (max-width: 1200px) {
    .social-demo {
        grid-template-columns: 1fr;
    }
    
    .social-ai-panel {
        position: static;
    }
    
    .seo-pipeline {
        flex-direction: column;
    }
    
    .seo-connector {
        transform: rotate(0);
    }
}

@media (max-width: 768px) {
    .social-platforms {
        grid-template-columns: 1fr;
    }
    
    .seo-stage {
        max-width: 100%;
    }
}

.feature-text p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Workflow Timeline */
.workflow-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-track {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-item {
    position: relative;
    padding-left: 72px;
    padding-bottom: 48px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 16px;
    top: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--border);
    transition: all var(--transition);
}

.timeline-dot.active {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 245, 212, 0.5);
}

.timeline-content {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: all var(--transition);
}

.timeline-item:hover .timeline-content {
    border-color: var(--border-hover);
}

.timeline-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    background: var(--surface);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
}

.timeline-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
}

.timeline-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Calendar Section */
.calendar-section {
    padding: 100px 48px;
    max-width: 1400px;
    margin: 0 auto;
}

.calendar-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.calendar-demo {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.cal-nav {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    cursor: pointer;
}

.cal-month {
    font-weight: 600;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.cal-day-header {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 8px 0;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 6px;
    gap: 4px;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
    background: var(--surface);
    position: relative;
}

.cal-day.other {
    color: var(--text-muted);
    background: transparent;
}

.cal-day.today {
    background: var(--primary-dim);
    border: 1px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
}

.cal-day.scheduled {
    background: var(--secondary-dim);
}

.cal-post {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.cal-post.vk { background: var(--vk); }
.cal-post.tg { background: var(--tg); }
.cal-post.yt { background: var(--yt); }
.cal-post.scheduled-post { background: var(--text-muted); }

.calendar-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.legend-dot.vk { background: var(--vk); }
.legend-dot.tg { background: var(--tg); }
.legend-dot.yt { background: var(--yt); }
.legend-dot.scheduled { background: var(--text-muted); }

/* Notifications Demo */
.notifications-demo {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.notifications-demo h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.notifications-demo h4::before {
    content: '💬';
}

.tg-messages {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tg-message {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: var(--surface);
    border-radius: var(--radius);
}

.tg-message.incoming {
    animation: messageIn 0.5s ease-out;
}

@keyframes messageIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
}

.tg-avatar {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.tg-content {
    flex: 1;
}

.tg-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--tg);
    display: block;
    margin-bottom: 4px;
}

.tg-content p {
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.tg-content small {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.tg-content .typing {
    color: var(--text-muted);
}

.dots span {
    animation: dots 1.4s ease-in-out infinite;
}

.dots span:nth-child(2) { animation-delay: 0.2s; }
.dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes dots {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Brand Section */
.brand-section {
    background: linear-gradient(180deg, transparent, var(--bg-elevated), transparent);
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.brand-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition);
}

.brand-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.brand-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.brand-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.brand-card > p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.brand-demo {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 16px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.product-item {
    aspect-ratio: 1;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.product-item.add {
    border-style: dashed;
    color: var(--text-muted);
    cursor: pointer;
}

.product-item.add:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.avatar-showcase {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.avatar-item {
    text-align: center;
    cursor: pointer;
}

.avatar-img {
    width: 60px;
    height: 60px;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 8px;
    transition: all var(--transition);
}

.avatar-item.active .avatar-img {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-dim);
}

.avatar-item span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.avatar-item.active span {
    color: var(--primary);
}

.company-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ci-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
}

.ci-item span {
    font-size: 1rem;
}

/* Gallery Section */
.gallery-section {
    background: var(--bg-elevated);
}

.gallery-demo-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.gallery-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.gf-step {
    text-align: center;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    min-width: 160px;
}

.gf-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.gf-step h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.gf-step p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.gf-arrow {
    font-size: 1.5rem;
    color: var(--primary);
}

.gallery-preview {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.gp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    font-weight: 500;
}

.gp-share {
    display: flex;
    align-items: center;
    gap: 12px;
}

.gp-link {
    font-size: 0.8rem;
    color: var(--text-muted);
    background: var(--surface);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
}

.gp-copy {
    padding: 6px 12px;
    background: var(--primary);
    color: var(--bg);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
}

.gp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding: 20px;
}

.gp-item {
    aspect-ratio: 1;
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    cursor: pointer;
    position: relative;
    transition: all var(--transition);
}

.gp-item:hover {
    border-color: var(--primary);
}

.gp-item.selected {
    border-color: var(--success);
}

.gp-item.selected i {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    background: var(--success);
    color: white;
    border-radius: 50%;
    font-size: 0.6rem;
    display: grid;
    place-items: center;
    font-style: normal;
}

.gp-item.video {
    background: linear-gradient(135deg, var(--surface), var(--bg-card));
}

.gp-footer {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding: 16px;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.gp-selected {
    color: var(--success);
    font-weight: 600;
}

/* Generators Section */
.generators-section {
    background: linear-gradient(180deg, transparent, var(--bg-elevated));
}

.generators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.gen-category {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.gen-category h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.gen-category h3 span {
    font-size: 1.3rem;
}

.gen-models {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.gen-model {
    padding: 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    transition: all var(--transition);
}

.gen-model:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.gen-model.featured {
    border-color: var(--primary);
    background: var(--primary-dim);
}

.gm-logo {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.gen-model.featured .gm-logo {
    color: var(--primary);
}

.gen-model span {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.gen-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.gf-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.gf-item span {
    font-size: 2rem;
}

.gf-item b {
    display: block;
    font-size: 1rem;
    margin-bottom: 4px;
}

.gf-item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Transcription Section */
.transcription-section {
    background: var(--bg-elevated);
}

.transcription-demo {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.trans-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.tf-step {
    text-align: center;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    min-width: 140px;
}

.tf-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.tf-step h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.tf-step p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.tf-arrow {
    font-size: 1.5rem;
    color: var(--primary);
}

.trans-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.tp-transcript,
.tp-tasks {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.tp-header {
    padding: 12px 16px;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    font-size: 0.85rem;
    font-weight: 600;
}

.tp-speakers {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tp-speaker {
    display: flex;
    gap: 12px;
}

.speaker-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.speaker-text b {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 4px;
}

.speaker-text p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0;
}

.task-notifications {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.task-notif {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: var(--surface);
    border-radius: var(--radius-sm);
}

.tn-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: white;
    font-weight: 700;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.tn-content b {
    display: block;
    font-size: 0.75rem;
    color: var(--tg);
    margin-bottom: 4px;
}

.tn-content p {
    font-size: 0.8rem;
    margin: 0 0 4px;
}

.tn-content small {
    font-size: 0.7rem;
    color: var(--success);
}

@media (max-width: 768px) {
    .brand-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-flow,
    .trans-flow {
        flex-direction: column;
    }
    
    .gf-arrow,
    .tf-arrow {
        transform: rotate(90deg);
    }
    
    .gp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .generators-grid {
        grid-template-columns: 1fr;
    }
    
    .gen-models {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trans-preview {
        grid-template-columns: 1fr;
    }
}

/* CTA Section */
.cta-section {
    padding: 60px 48px 120px;
}

.cta-card {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
    padding: 64px;
    background: linear-gradient(135deg, var(--bg-elevated), var(--bg-card));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 0% 0%, rgba(0, 245, 212, 0.15), transparent 50%),
        radial-gradient(ellipse at 100% 100%, rgba(16, 185, 129, 0.15), transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-visual {
    position: relative;
    z-index: 1;
}

.cta-stats {
    display: flex;
    gap: 32px;
}

.cta-stat {
    text-align: center;
}

.cta-stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    background: linear-gradient(135deg, var(--primary), var(--success));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Footer */
.footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border);
    padding: 64px 48px 32px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 64px;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    gap: 64px;
}

.footer-column h5 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    color: var(--text-muted);
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    padding: 6px 0;
    transition: color var(--transition);
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 48px auto 0;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1200px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .crm-demo {
        grid-template-columns: 1fr;
    }
    
    .crm-sidebar {
        flex-direction: row;
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
    
    .crm-panel {
        border-left: none;
        border-top: 1px solid var(--border);
    }
    
    .calendar-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-inner {
        flex-wrap: wrap;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-elevated);
        flex-direction: column;
        padding: 24px;
        border-bottom: 1px solid var(--border);
    }
    
    .nav.open {
        display: flex;
    }
    
    .header-actions {
        gap: 8px;
    }
    
    .header-actions .btn {
        display: none;
    }
    
    .lang-switcher {
        margin-right: 4px;
    }
    
    .lang-btn {
        padding: 5px 8px;
    }
    
    .lang-code {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding: 100px 24px 60px;
    }
    
    .section {
        padding: 60px 24px;
    }
    
    .hero-stats {
        flex-wrap: wrap;
    }
    
    .stat-divider {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card.featured {
        grid-column: span 1;
    }
    
    .video-workflow {
        flex-direction: column;
    }
    
    .workflow-connector {
        transform: rotate(90deg);
        padding: 0;
    }
    
    .cta-card {
        grid-template-columns: 1fr;
        padding: 32px;
        text-align: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .cta-stats {
        justify-content: center;
    }
    
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-links {
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .kanban-demo {
        grid-template-columns: 1fr;
    }
    
    .crm-board {
        grid-template-columns: 1fr;
        min-width: auto;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-lg {
        width: 100%;
        justify-content: center;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--border-hover);
}

/* Selection */
::selection {
    background: var(--primary);
    color: var(--bg);
}

