:root {
    --primary: #7C3AED;
    --primary-light: #8B5CF6;
    --primary-dark: #6D28D9;
    --primary-bg: #F5F0FF;
    --primary-bg2: #EDE9FE;
    --text-primary: #1a1a2e;
    --text-secondary: #64648C;
    --text-tertiary: #9494b8;
    --bg-white: #ffffff;
    --bg-light: #FAFAFE;
    --bg-card: #ffffff;
    --border-light: #E8E8F0;
    --border-card: #EDEDF5;
    --shadow-sm: 0 1px 3px rgba(124, 58, 237, 0.06);
    --shadow-md: 0 4px 16px rgba(124, 58, 237, 0.08);
    --shadow-lg: 0 8px 32px rgba(124, 58, 237, 0.10);
    --shadow-xl: 0 16px 48px rgba(124, 58, 237, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 9999px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1200px
}

*,
::after,
::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased
}

body {
    font-family: var(--font);
    color: var(--text-primary);
    background: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition)
}

button {
    border: none;
    background: 0 0;
    cursor: pointer;
    font-family: var(--font)
}

img {
    max-width: 100%;
    display: block
}

ul {
    list-style: none
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    transition: box-shadow var(--transition)
}

.header.scrolled {
    box-shadow: var(--shadow-md)
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0
}

.logo-icon {
    display: flex
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary)
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 32px
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition);
    white-space: nowrap
}

.nav-link:hover {
    color: var(--primary)
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px
}

.btn-login {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition)
}

.btn-login:hover {
    color: var(--primary)
}

.btn-cta-header {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: var(--primary);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: background var(--transition), transform var(--transition);
    white-space: nowrap
}

.btn-cta-header:hover {
    background: var(--primary-dark);
    transform: translateY(-1px)
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition)
}

.mobile-menu {
    display: none;
    padding: 16px 24px 24px;
    background: var(--bg-white);
    border-top: 1px solid var(--border-light)
}

.mobile-menu.open {
    display: block
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.mobile-nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 8px 0
}

.hero {
    position: relative;
    padding: 140px 0 80px;
    text-align: center;
    overflow: hidden
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, var(--primary-bg) 0, rgba(255, 255, 255, 0) 70%);
    z-index: -1
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, .08) 0, transparent 70%);
    border-radius: 50%
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: -100px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, .06) 0, transparent 70%);
    border-radius: 50%
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--bg-white);
    border: 1px solid var(--primary-bg2);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 24px;
    animation: fadeInDown .6s ease
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -.03em;
    color: var(--text-primary);
    margin-bottom: 20px;
    animation: fadeInUp .6s ease .1s both
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto 36px;
    animation: fadeInUp .6s ease .2s both
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 56px;
    animation: fadeInUp .6s ease .3s both;
    flex-wrap: wrap
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--primary);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 4px 16px rgba(124, 58, 237, .3)
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(124, 58, 237, .4)
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--bg-white);
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-light);
    transition: border-color var(--transition), transform var(--transition)
}

.btn-secondary:hover {
    border-color: var(--primary);
    transform: translateY(-2px)
}

.btn-large {
    padding: 16px 36px;
    font-size: 16px
}

.hero-mockup {
    max-width: 960px;
    margin: 0 auto 48px;
    animation: fadeInUp .8s ease .4s both
}

.mockup-browser {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-card);
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(124, 58, 237, .04);
    overflow: hidden
}

.mockup-browser-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: #f8f8fc;
    border-bottom: 1px solid var(--border-light)
}

.mockup-dots {
    display: flex;
    gap: 6px
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%
}

.mockup-dots span:first-child {
    background: #ff5f57
}

.mockup-dots span:nth-child(2) {
    background: #ffbd2e
}

.mockup-dots span:nth-child(3) {
    background: #28c840
}

.mockup-url {
    flex: 1;
    padding: 6px 12px;
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    font-size: 12px;
    color: var(--text-tertiary);
    text-align: center;
    border: 1px solid var(--border-light)
}

.mockup-content {
    display: flex;
    min-height: 300px
}

.mockup-sidebar {
    width: 40%;
    border-right: 1px solid var(--border-light);
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 2px
}

.mockup-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: var(--radius-sm);
    transition: background var(--transition)
}

.mockup-contact:hover {
    background: var(--bg-light)
}

.mockup-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0
}

.a1 {
    background: linear-gradient(135deg, #7c3aed, #a78bfa)
}

.a2 {
    background: linear-gradient(135deg, #f59e0b, #fbbf24)
}

.a3 {
    background: linear-gradient(135deg, #10b981, #34d399)
}

.a4 {
    background: linear-gradient(135deg, #3b82f6, #60a5fa)
}

.mockup-contact-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1
}

.mockup-name {
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.mockup-msg {
    font-size: 11px;
    color: var(--text-tertiary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.mockup-tag {
    font-size: 9px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    color: #fff;
    white-space: nowrap;
    flex-shrink: 0
}

.tag-new {
    background: #3b82f6
}

.tag-negotiating {
    background: #f59e0b
}

.tag-closed {
    background: #10b981
}

.tag-follow {
    background: #8b5cf6
}

.mockup-kanban {
    flex: 1;
    display: flex;
    gap: 8px;
    padding: 12px;
    background: var(--bg-light);
    overflow-x: auto
}

.kanban-col {
    min-width: 140px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.kanban-header {
    font-size: 11px;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: space-between
}

.kh-new {
    background: #dbeafe;
    color: #1d4ed8
}

.kh-contact {
    background: #fef3c7;
    color: #92400e
}

.kh-nego {
    background: #fde68a;
    color: #78350f
}

.kh-closed {
    background: #d1fae5;
    color: #065f46
}

.kanban-count {
    font-size: 10px;
    background: rgba(0, 0, 0, .1);
    padding: 1px 6px;
    border-radius: var(--radius-full)
}

.kanban-card {
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    padding: 8px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light)
}

.kcard-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    flex-shrink: 0
}

.ka1 {
    background: linear-gradient(135deg, #7c3aed, #a78bfa)
}

.ka2 {
    background: linear-gradient(135deg, #ef4444, #f87171)
}

.ka3 {
    background: linear-gradient(135deg, #f59e0b, #fbbf24)
}

.ka4 {
    background: linear-gradient(135deg, #3b82f6, #60a5fa)
}

.ka5 {
    background: linear-gradient(135deg, #10b981, #34d399)
}

.kcard-info {
    display: flex;
    flex-direction: column
}

.kcard-info span {
    font-size: 11px;
    font-weight: 600
}

.kcard-info small {
    font-size: 10px;
    color: var(--text-tertiary)
}

.hero-social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    animation: fadeInUp .6s ease .5s both;
    flex-wrap: wrap
}

.proof-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: box-shadow var(--transition)
}

.proof-badge:hover {
    box-shadow: var(--shadow-md)
}

.proof-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm)
}

.proof-chrome {
    background: linear-gradient(135deg, #4285f4, #34a853, #fbbc05, #ea4335)
}

.proof-users {
    background: linear-gradient(135deg, var(--primary), var(--primary-light))
}

.proof-info {
    display: flex;
    flex-direction: column
}

.proof-rating {
    font-size: 14px;
    font-weight: 700
}

.stars {
    color: #f59e0b
}

.proof-source {
    font-size: 12px;
    color: var(--text-tertiary)
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    text-align: center;
    letter-spacing: -.02em;
    margin-bottom: 16px
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 48px
}

.allinone {
    padding: 100px 0
}

.feature-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 40px 0 16px;
    flex-wrap: wrap
}

.feature-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-full);
    transition: all var(--transition);
    border: 1px solid transparent
}

.feature-tab:hover {
    color: var(--primary);
    background: var(--primary-bg)
}

.feature-tab.active {
    color: var(--primary);
    background: var(--primary-bg);
    border-color: var(--primary-bg2);
    font-weight: 600
}

.feature-tab svg {
    width: 18px;
    height: 18px
}

.feature-tab-desc {
    display: none;
    text-align: center;
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 32px;
    line-height: 1.6
}

.feature-tab-desc.active {
    display: block
}

.feature-display {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-card);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    min-height: 380px
}

.feature-img {
    display: none;
    padding: 32px;
    animation: fadeIn .4s ease
}

.feature-img.active {
    display: block
}

.feat-kanban-demo {
    display: flex;
    gap: 12px;
    overflow-x: auto
}

.fk-col {
    min-width: 180px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.fk-header {
    font-size: 13px;
    font-weight: 700;
    padding: 10px 14px;
    border-radius: var(--radius-sm)
}

.fk-h1 {
    background: #dbeafe;
    color: #1e40af
}

.fk-h2 {
    background: #fef3c7;
    color: #92400e
}

.fk-h3 {
    background: #ffedd5;
    color: #9a3412
}

.fk-h4 {
    background: #d1fae5;
    color: #065f46
}

.fk-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition)
}

.fk-card:hover {
    box-shadow: var(--shadow-md)
}

.fk-card strong {
    font-size: 13px
}

.fk-card small {
    font-size: 11px;
    color: var(--text-tertiary)
}

.fk-time {
    font-size: 10px;
    color: var(--text-tertiary);
    align-self: flex-end
}

.fk-ghost {
    border: 2px dashed var(--border-light);
    background: 0 0;
    box-shadow: none;
    min-height: 48px;
    opacity: .5
}

.feat-labels-demo {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.fl-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light)
}

.fl-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0
}

.fl1 {
    background: linear-gradient(135deg, #7c3aed, #a78bfa)
}

.fl2 {
    background: linear-gradient(135deg, #f59e0b, #fbbf24)
}

.fl3 {
    background: linear-gradient(135deg, #ef4444, #f87171)
}

.fl4 {
    background: linear-gradient(135deg, #3b82f6, #60a5fa)
}

.fl-name {
    flex: 1;
    font-size: 14px;
    font-weight: 600
}

.fl-tag {
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    padding: 3px 10px;
    border-radius: var(--radius-full)
}

.feat-auto-demo {
    display: flex;
    justify-content: center
}

.fa-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px
}

.fa-node {
    padding: 14px 24px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    max-width: 340px
}

.fa-trigger {
    background: var(--primary-bg);
    border: 2px solid var(--primary);
    color: var(--primary-dark)
}

.fa-action {
    background: var(--bg-white);
    border: 1px solid var(--border-light)
}

.fa-condition {
    background: #fef3c7;
    border: 2px solid #f59e0b;
    color: #92400e
}

.fa-arrow {
    font-size: 18px;
    color: var(--text-tertiary)
}

.fa-branches {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center
}

.fa-no,
.fa-yes {
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500
}

.fa-yes {
    background: #d1fae5;
    color: #065f46
}

.fa-no {
    background: #fee2e2;
    color: #991b1b
}

.feat-broadcast-demo {
    display: flex;
    justify-content: center
}

.fb-panel {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 24px;
    width: 100%;
    max-width: 480px
}

.fb-header {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px
}

.fb-field {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 14px
}

.fb-field label {
    font-weight: 600;
    min-width: 80px;
    color: var(--text-secondary)
}

.fb-field span {
    color: var(--text-primary)
}

.fb-progress {
    height: 8px;
    background: var(--border-light);
    border-radius: var(--radius-full);
    margin: 16px 0 12px;
    overflow: hidden
}

.fb-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-full);
    transition: width 1s ease
}

.fb-stats {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-secondary)
}

.feat-status-demo {
    display: flex;
    justify-content: center
}

.fs-panel {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 24px;
    width: 100%;
    max-width: 520px
}

.fs-header {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px
}

.fs-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light)
}

.fs-item:last-child {
    border-bottom: none
}

.fs-thumb {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    flex-shrink: 0
}

.fs-t1 {
    background: linear-gradient(135deg, #f59e0b, #fbbf24)
}

.fs-t2 {
    background: linear-gradient(135deg, #3b82f6, #60a5fa)
}

.fs-t3 {
    background: linear-gradient(135deg, #10b981, #34d399)
}

.fs-info {
    flex: 1;
    display: flex;
    flex-direction: column
}

.fs-info strong {
    font-size: 14px
}

.fs-info small {
    font-size: 12px;
    color: var(--text-tertiary)
}

.fs-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    white-space: nowrap
}

.fs-scheduled {
    background: #fef3c7;
    color: #92400e
}

.fs-sent {
    background: #d1fae5;
    color: #065f46
}

.feat-quick-demo {
    max-width: 420px;
    margin: 0 auto
}

.fq-chat {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden
}

.fq-bubble {
    padding: 10px 16px;
    border-radius: var(--radius-md);
    font-size: 14px;
    max-width: 80%;
    margin: 12px
}

.fq-in {
    background: var(--bg-light);
    color: var(--text-primary)
}

.fq-typing {
    padding: 8px 16px;
    font-size: 13px;
    color: var(--text-tertiary);
    border-top: 1px solid var(--border-light)
}

.fq-typing span {
    color: var(--primary);
    font-weight: 700
}

.fq-menu {
    border-top: 1px solid var(--border-light)
}

.fq-option {
    padding: 10px 16px;
    font-size: 13px;
    display: flex;
    gap: 12px;
    transition: background var(--transition);
    cursor: pointer
}

.fq-option.fq-active,
.fq-option:hover {
    background: var(--primary-bg)
}

.fq-shortcut {
    font-weight: 700;
    color: var(--primary);
    font-family: monospace;
    font-size: 12px;
    min-width: 72px
}

.works-section {
    padding: 100px 0;
    background: var(--bg-light)
}

.works-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 48px
}

.works-card {
    background: var(--bg-white);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: box-shadow var(--transition)
}

.works-card:hover {
    box-shadow: var(--shadow-md)
}

.works-card-large {
    grid-column: 1/-1
}

.works-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px
}

.works-card p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 24px
}

.works-card-img {
    display: flex;
    justify-content: center
}

.wci-browser {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    width: 100%;
    max-width: 500px;
    overflow: hidden
}

.wci-bar {
    display: flex;
    gap: 6px;
    padding: 10px 14px;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light)
}

.wci-bar span {
    width: 8px;
    height: 8px;
    border-radius: 50%
}

.wci-bar span:first-child {
    background: #ff5f57
}

.wci-bar span:nth-child(2) {
    background: #ffbd2e
}

.wci-bar span:nth-child(3) {
    background: #28c840
}

.wci-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    font-size: 40px
}

.wci-plus {
    font-size: 28px;
    font-weight: 300;
    color: var(--text-tertiary)
}

.platform-icons {
    display: flex;
    gap: 24px;
    justify-content: center
}

.platform-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px
}

.platform-icon span {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary)
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center
}

.security-badge span {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary)
}

.professionals {
    padding: 100px 0
}

.prof-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 40px 0 32px;
    flex-wrap: wrap
}

.prof-tab {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-full);
    transition: all var(--transition);
    border: 1px solid transparent
}

.prof-tab:hover {
    color: var(--primary)
}

.prof-tab.active {
    color: var(--primary);
    background: var(--primary-bg);
    border-color: var(--primary-bg2);
    font-weight: 600
}

.prof-grid {
    position: relative
}

.prof-card {
    display: none;
    animation: fadeIn .4s ease
}

.prof-card.active {
    display: block
}

.prof-cards-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px
}

.prof-feature {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--bg-light);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    transition: box-shadow var(--transition)
}

.prof-feature:hover {
    box-shadow: var(--shadow-md)
}

.pf-icon {
    font-size: 28px;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-bg);
    border-radius: var(--radius-md)
}

.prof-feature h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px
}

.prof-feature p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5
}

.pricing-section {
    padding: 100px 0;
    background: var(--bg-light)
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto
}

.pricing-card {
    background: var(--bg-white);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    position: relative;
    transition: box-shadow var(--transition), transform var(--transition)
}

.pricing-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px)
}

.pricing-featured {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-lg)
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: var(--radius-full);
    white-space: nowrap
}

.pricing-header {
    margin-bottom: 28px
}

.pricing-header h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px
}

.pricing-price {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -.02em
}

.pricing-price span {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-secondary)
}

.pricing-features {
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.pricing-features li {
    font-size: 14px;
    color: var(--text-primary)
}

.pricing-features li.disabled {
    color: var(--text-tertiary)
}

.btn-pricing {
    display: block;
    text-align: center;
    padding: 12px 24px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    transition: all var(--transition)
}

.btn-pricing:hover {
    border-color: var(--primary);
    color: var(--primary)
}

.btn-pricing-featured {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary)
}

.btn-pricing-featured:hover {
    background: var(--primary-dark);
    color: #fff
}

.testimonials {
    padding: 100px 0
}

.trust-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin: 40px 0 56px;
    flex-wrap: wrap
}

.trust-stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px
}

.trust-number {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -.02em
}

.trust-label {
    font-size: 14px;
    color: var(--text-secondary)
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.testimonial-card {
    background: var(--bg-white);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: box-shadow var(--transition)
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md)
}

.test-stars {
    color: #f59e0b;
    font-size: 16px;
    margin-bottom: 12px
}

.testimonial-card p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-secondary);
    margin-bottom: 16px
}

.test-author {
    display: flex;
    align-items: center;
    gap: 10px
}

.test-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0
}

.ta1 {
    background: linear-gradient(135deg, #7c3aed, #a78bfa)
}

.ta2 {
    background: linear-gradient(135deg, #f59e0b, #fbbf24)
}

.ta3 {
    background: linear-gradient(135deg, #10b981, #34d399)
}

.ta4 {
    background: linear-gradient(135deg, #ef4444, #f87171)
}

.ta5 {
    background: linear-gradient(135deg, #3b82f6, #60a5fa)
}

.ta6 {
    background: linear-gradient(135deg, #ec4899, #f472b6)
}

.test-author strong {
    font-size: 13px;
    display: block
}

.test-author small {
    font-size: 12px;
    color: var(--text-tertiary)
}

.faq-section {
    padding: 100px 0;
    background: var(--bg-light)
}

.faq-list {
    max-width: 720px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: box-shadow var(--transition)
}

.faq-item:hover {
    box-shadow: var(--shadow-sm)
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    transition: color var(--transition)
}

.faq-question:hover {
    color: var(--primary)
}

.faq-icon {
    font-size: 20px;
    font-weight: 300;
    color: var(--text-tertiary);
    transition: transform var(--transition);
    flex-shrink: 0;
    margin-left: 16px
}

.faq-item.open .faq-icon {
    transform: rotate(45deg)
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease
}

.faq-item.open .faq-answer {
    max-height: 300px
}

.faq-answer p {
    padding: 0 24px 18px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary)
}

.cta-final {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0, var(--primary-dark) 100%);
    text-align: center;
    position: relative;
    overflow: hidden
}

.cta-final::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, .1) 0, transparent 60%);
    border-radius: 50%
}

.cta-final h2 {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -.02em
}

.cta-final p {
    font-size: 17px;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 32px
}

.cta-final .btn-primary {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .15)
}

.cta-final .btn-primary:hover {
    background: #f5f0ff;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, .2)
}

.footer {
    padding: 64px 0 32px;
    background: var(--bg-white);
    border-top: 1px solid var(--border-light)
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px
}

.footer-brand {
    max-width: 280px
}

.footer-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-top: 16px
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px
}

.footer-col a {
    font-size: 13px;
    color: var(--text-secondary);
    transition: color var(--transition)
}

.footer-col a:hover {
    color: var(--primary)
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px
}

.footer-bottom p {
    font-size: 12px;
    color: var(--text-tertiary)
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@media (max-width:1024px) {
    .hero-title {
        font-size: 42px
    }

    .section-title {
        font-size: 32px
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .prof-cards-inner {
        grid-template-columns: 1fr
    }
}

@media (max-width:768px) {

    .header-actions,
    .nav-desktop {
        display: none
    }

    .mobile-menu-btn {
        display: flex
    }

    .hero {
        padding: 110px 0 60px
    }

    .hero-title {
        font-size: 32px
    }

    .hero-subtitle {
        font-size: 16px
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch
    }

    .btn-primary,
    .btn-secondary {
        justify-content: center
    }

    .mockup-kanban {
        display: none
    }

    .mockup-sidebar {
        width: 100%
    }

    .works-grid {
        grid-template-columns: 1fr
    }

    .testimonials-grid {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .footer-bottom {
        flex-direction: column
    }

    .feature-tabs {
        gap: 4px
    }

    .feature-tab {
        font-size: 12px;
        padding: 8px 12px
    }

    .feature-tab svg {
        display: none
    }

    .trust-stats {
        gap: 24px
    }

    .trust-number {
        font-size: 24px
    }

    .section-title {
        font-size: 28px
    }

    .cta-final h2 {
        font-size: 26px
    }

    .allinone,
    .faq-section,
    .pricing-section,
    .professionals,
    .testimonials,
    .works-section {
        padding: 64px 0
    }

    .feature-display {
        min-height: auto
    }

    .feat-kanban-demo {
        flex-direction: column
    }

    .fk-col {
        min-width: 100%
    }

    .prof-tabs {
        gap: 4px
    }

    .prof-tab {
        font-size: 12px;
        padding: 8px 12px
    }
}

@media (max-width:480px) {
    .hero-title {
        font-size: 26px
    }

    .container {
        padding: 0 16px
    }

    .hero-social-proof {
        flex-direction: column;
        align-items: center
    }
}

.mockup-video-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    font-size: 0;
    aspect-ratio: 16/9;
    border-radius: 0 0 var(--radius-xl) var(--radius-xl)
}

.hero-video {
    position: absolute;
    top: 74.2%;
    left: 79.6%;
    width: 74.6%;
    transform: translate(-90%, -58%) scale(1.35);
    display: block;
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none
}

.hero-video::-webkit-media-controls,
.hero-video::-webkit-media-controls-enclosure,
.hero-video::-webkit-media-controls-panel,
.hero-video::-webkit-media-controls-start-playback-button {
    display: none !important;
    -webkit-appearance: none
}

video::-webkit-media-controls {
    display: none !important
}

.animate-target {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .5s ease, transform .5s ease
}

.animate-target.animate-in {
    opacity: 1;
    transform: translateY(0)
}

.animate-target:nth-child(2) {
    transition-delay: 80ms
}

.animate-target:nth-child(3) {
    transition-delay: 0.16s
}

.animate-target:nth-child(4) {
    transition-delay: 0.24s
}

.animate-target:nth-child(5) {
    transition-delay: 0.32s
}

.animate-target:nth-child(6) {
    transition-delay: 0.40s
}

.mobile-menu-btn.open span:first-child {
    transform: translateY(7px) rotate(45deg)
}

.mobile-menu-btn.open span:nth-child(2) {
    opacity: 0
}

.mobile-menu-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

.feat-subfeatures {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light)
}

.feat-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 14px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--transition)
}

.feat-chip:hover {
    border-color: var(--primary-bg2);
    background: var(--primary-bg);
    color: var(--primary)
}

.fa-badge {
    display: inline-block;
    padding: 2px 8px;
    background: var(--primary-bg);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 10px;
    font-weight: 600;
    margin-left: 6px;
    vertical-align: middle
}

.fa-badge-exclusive {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #fff;
    animation: pulse-glow 2s ease-in-out infinite
}

.fa-highlight {
    background: linear-gradient(135deg, var(--primary-bg), #fef3c7);
    border: 2px solid var(--primary);
    color: var(--text-primary);
    font-weight: 600
}

.fa-arrow small {
    display: block;
    font-size: 11px;
    color: var(--text-tertiary);
    font-weight: 400
}

.fb-status-active {
    color: #10b981;
    font-weight: 600
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, .4)
    }

    50% {
        box-shadow: 0 0 0 6px rgba(245, 158, 11, 0)
    }
}

.nav-dropdown-content {
    display: none !important
}

.feat-type-grid {
    gap: 8px
}

.feat-type-item {
    min-width: 70px;
    padding: 10px 12px
}

.fa-branches {
    flex-direction: column
}

.fb-actions {
    flex-wrap: wrap
}

.fl-kanban-mini {
    flex-wrap: wrap
}

.cta-trust {
    flex-direction: column;
    align-items: center;
    gap: 8px
}

.hero-integrations {
    flex-direction: column;
    gap: 10px
}

.section-hidden {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease
}

.section-visible {
    opacity: 1;
    transform: translateY(0)
}

.nav-dropdown {
    position: relative
}

.nav-has-dropdown {
    display: inline-flex;
    align-items: center;
    gap: 4px
}

.nav-dropdown-content {
    position: absolute;
    top: 100%;
    left: -20px;
    padding-top: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--transition);
    z-index: 100;
    background: var(--bg-white);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    min-width: 300px
}

.nav-dropdown:hover .nav-dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.nav-dropdown-content a {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    transition: background var(--transition)
}

.nav-dropdown-content a:hover {
    background: var(--primary-bg)
}

.ndc-icon {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px
}

.nav-dropdown-content strong {
    font-size: 13px;
    display: block;
    margin-bottom: 2px
}

.nav-dropdown-content small {
    font-size: 11px;
    color: var(--text-tertiary)
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
    animation: pulse-dot 2s ease infinite;
    flex-shrink: 0
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .4
    }
}

.hero-integrations {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
    animation: fadeInUp .6s ease .6s both
}

.hero-integrations>span {
    font-size: 13px;
    color: var(--text-tertiary)
}

.integration-icons {
    display: flex;
    gap: 12px
}

.int-icon {
    width: 36px;
    height: 36px;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all var(--transition)
}

.int-icon:hover {
    background: var(--primary-bg);
    border-color: var(--primary-bg2);
    transform: translateY(-2px)
}

.proof-revenue {
    background: linear-gradient(135deg, #10b981, #34d399)
}

.tab-exclusive-badge {
    font-size: 9px;
    font-weight: 700;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #fff;
    padding: 2px 6px;
    border-radius: var(--radius-full);
    margin-left: 4px;
    vertical-align: middle
}

.feat-section-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light)
}

.feat-section-icon {
    font-size: 32px;
    flex-shrink: 0
}

.feat-section-header h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px
}

.feat-section-header p {
    font-size: 14px;
    color: var(--text-secondary)
}

.feat-exclusive-tag {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    white-space: nowrap;
    margin-left: auto;
    align-self: center;
    animation: pulse-glow 2s ease-in-out infinite
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, .4)
    }

    50% {
        box-shadow: 0 0 0 6px rgba(245, 158, 11, 0)
    }
}

.fk-count {
    font-size: 11px;
    background: rgba(0, 0, 0, .1);
    padding: 1px 8px;
    border-radius: var(--radius-full);
    margin-left: 8px
}

.fk-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.fk-card-time {
    font-size: 10px;
    color: var(--text-tertiary)
}

.fk-card-note {
    font-size: 11px;
    color: var(--primary);
    background: var(--primary-bg);
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    margin-top: 6px
}

.fk-card-tags {
    display: flex;
    gap: 4px;
    margin-top: 6px
}

.fk-mini-tag {
    font-size: 9px;
    font-weight: 600;
    color: #fff;
    padding: 1px 6px;
    border-radius: var(--radius-full)
}

.fk-card-actions {
    display: flex;
    gap: 6px;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--border-light)
}

.fk-action {
    font-size: 14px;
    cursor: pointer;
    opacity: .5;
    transition: opacity var(--transition)
}

.fk-action:hover {
    opacity: 1
}

.fk-card-success {
    border-left: 3px solid #10b981
}

.fk-ghost {
    display: flex;
    align-items: center;
    justify-content: center
}

.fk-ghost span {
    font-size: 11px;
    color: var(--text-tertiary)
}

.feat-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light)
}

.feat-highlight-item {
    display: flex;
    gap: 10px;
    padding: 12px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    transition: all var(--transition)
}

.feat-highlight-item:hover {
    border-color: var(--primary-bg2);
    box-shadow: var(--shadow-sm)
}

.fhi-icon {
    font-size: 20px;
    flex-shrink: 0
}

.feat-highlight-item strong {
    font-size: 13px;
    display: block;
    margin-bottom: 2px
}

.feat-highlight-item p {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.5
}

.fa-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0
}

.fa-line {
    width: 2px;
    height: 16px;
    background: var(--border-light)
}

.fa-delay {
    font-size: 11px;
    color: var(--primary);
    font-weight: 600;
    background: var(--primary-bg);
    padding: 2px 10px;
    border-radius: var(--radius-full)
}

.fa-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
    margin-right: 6px
}

.fa-note {
    display: block;
    font-size: 11px;
    color: var(--text-tertiary);
    font-weight: 400;
    margin-top: 4px
}

.fa-badge {
    display: inline-block;
    padding: 2px 8px;
    background: var(--primary-bg);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 10px;
    font-weight: 600;
    margin-left: 4px;
    vertical-align: middle
}

.fa-badge-exclusive {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #fff;
    animation: pulse-glow 2s ease-in-out infinite
}

.fa-highlight {
    background: linear-gradient(135deg, var(--primary-bg), #fef3c7);
    border: 2px solid var(--primary);
    color: var(--text-primary);
    font-weight: 600
}

.fa-branch {
    padding: 14px 18px;
    border-radius: var(--radius-md);
    flex: 1;
    min-width: 200px
}

.fa-branch-header {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px
}

.fa-branch p {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 4px
}

.fa-yes {
    background: #d1fae5;
    color: #065f46
}

.fa-no {
    background: #fee2e2;
    color: #991b1b
}

.fa-branches {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    width: 100%
}

.fl-sync-visual {
    display: flex;
    align-items: stretch;
    gap: 16px
}

.fl-sync-side {
    flex: 1;
    min-width: 0
}

.fl-sync-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 12px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .05em
}

.fl-sync-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 8px;
    flex-shrink: 0
}

.fl-sync-arrow-line {
    width: 2px;
    height: 40px;
    background: var(--primary-bg2)
}

.fl-sync-arrow span {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap
}

.fl-kanban-mini {
    display: flex;
    gap: 6px
}

.fl-km-col {
    flex: 1;
    min-width: 0
}

.fl-km-header {
    font-size: 10px;
    font-weight: 700;
    padding: 4px 6px;
    border-radius: 4px;
    text-align: center;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.fl-km-card {
    font-size: 10px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    padding: 4px 6px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.fb-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 8px
}

.fb-status-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-full)
}

.fb-status-active {
    background: #d1fae5;
    color: #065f46
}

.fb-fields {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px
}

.fb-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    background: var(--primary-bg);
    color: var(--primary);
    padding: 2px 8px;
    border-radius: var(--radius-full);
    margin-right: 4px
}

.fb-progress-section {
    margin-bottom: 16px
}

.fb-progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    font-size: 12px;
    color: var(--text-secondary)
}

.fb-progress-pct {
    font-weight: 700;
    color: var(--primary)
}

.fb-stat {
    text-align: center
}

.fb-stat-num {
    font-size: 18px;
    font-weight: 800;
    display: block
}

.fb-stat-success {
    color: #10b981
}

.fb-stat-pending {
    color: #f59e0b
}

.fb-stat-error {
    color: #ef4444
}

.fb-stat span:last-child {
    font-size: 11px;
    color: var(--text-tertiary)
}

.fb-actions {
    display: flex;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
    flex-wrap: wrap
}

.fb-action-btn {
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    border: 1px solid var(--border-light);
    transition: all var(--transition)
}

.fb-action-btn:hover {
    border-color: var(--primary);
    color: var(--primary)
}

.fb-btn-pause {
    color: #f59e0b
}

.fb-btn-cancel {
    color: #ef4444
}

.fb-btn-report {
    color: var(--primary)
}

.feat-type-grid {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
    flex-wrap: wrap;
    justify-content: center
}

.feat-type-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 18px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    text-align: center;
    min-width: 90px;
    transition: all var(--transition)
}

.feat-type-item:hover {
    border-color: var(--primary-bg2);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px)
}

.feat-type-item>span {
    font-size: 24px
}

.feat-type-item div {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
    line-height: 1.3
}

.feat-voip-demo {
    padding: 8px 0
}

.voip-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0
}

.voip-step {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    width: 100%
}

.voip-divider {
    width: 2px;
    height: 24px;
    background: var(--border-light)
}

.voip-phone-ring {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.voip-ring-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary);
    border-radius: 50%;
    animation: ring-pulse 1.5s ease infinite;
    opacity: .3
}

.voip-ring-2 {
    animation-delay: .5s
}

@keyframes ring-pulse {
    0% {
        transform: scale(.8);
        opacity: .5
    }

    100% {
        transform: scale(1.4);
        opacity: 0
    }
}

.voip-phone-icon {
    font-size: 28px;
    position: relative;
    z-index: 1
}

.voip-audio-wave {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 60px;
    width: 60px;
    justify-content: center;
    flex-shrink: 0
}

.voip-audio-wave span {
    width: 4px;
    background: var(--primary);
    border-radius: 4px;
    animation: wave-anim .8s ease infinite
}

.voip-audio-wave span:first-child {
    height: 12px;
    animation-delay: 0s
}

.voip-audio-wave span:nth-child(2) {
    height: 24px;
    animation-delay: .1s
}

.voip-audio-wave span:nth-child(3) {
    height: 36px;
    animation-delay: .2s
}

.voip-audio-wave span:nth-child(4) {
    height: 48px;
    animation-delay: .3s
}

.voip-audio-wave span:nth-child(5) {
    height: 36px;
    animation-delay: .4s
}

.voip-audio-wave span:nth-child(6) {
    height: 24px;
    animation-delay: .5s
}

.voip-audio-wave span:nth-child(7) {
    height: 12px;
    animation-delay: .6s
}

@keyframes wave-anim {

    0%,
    100% {
        transform: scaleY(.5)
    }

    50% {
        transform: scaleY(1)
    }
}

.voip-step-info h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px
}

.voip-step-info p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5
}

.voip-branches {
    display: flex;
    gap: 12px;
    width: 100%;
    flex-wrap: wrap
}

.voip-branch {
    flex: 1;
    min-width: 200px;
    padding: 18px;
    border-radius: var(--radius-md)
}

.voip-branch-yes {
    background: #d1fae5;
    border: 1px solid #a7f3d0;
    color: #065f46
}

.voip-branch-no {
    background: #fee2e2;
    border: 1px solid #fecaca;
    color: #991b1b
}

.voip-branch-icon {
    font-size: 24px;
    margin-bottom: 8px
}

.voip-branch h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px
}

.voip-branch p {
    font-size: 12px;
    line-height: 1.6
}

.pricing-plan-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 8px
}

.pricing-desc {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.5
}

.pf-highlight {
    font-weight: 700;
    color: var(--primary) !important
}

.cta-buttons {
    margin-bottom: 20px
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap
}

.cta-trust span {
    font-size: 13px;
    color: rgba(255, 255, 255, .7)
}

.wci-crm-icon,
.wci-result,
.wci-wa-icon {
    font-size: 40px
}

.wci-equals {
    font-size: 28px;
    font-weight: 300;
    color: var(--text-tertiary)
}

.section-hidden {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease
}

.section-visible {
    opacity: 1;
    transform: translateY(0)
}

@media(max-width:1024px) {
    .hero-title {
        font-size: 42px
    }

    .section-title {
        font-size: 32px
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .prof-cards-inner {
        grid-template-columns: 1fr
    }

    .feat-highlights {
        grid-template-columns: 1fr
    }

    .fl-sync-visual {
        flex-direction: column
    }

    .fl-sync-arrow {
        flex-direction: row;
        padding: 8px 0
    }

    .fl-sync-arrow-line {
        width: 40px;
        height: 2px
    }
}

@media(max-width:768px) {

    .header-actions,
    .nav-desktop {
        display: none
    }

    .mobile-menu-btn {
        display: flex
    }

    .hero {
        padding: 110px 0 60px
    }

    .hero-title {
        font-size: 30px
    }

    .hero-subtitle {
        font-size: 15px
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch
    }

    .btn-primary,
    .btn-secondary {
        justify-content: center
    }

    .works-grid {
        grid-template-columns: 1fr
    }

    .testimonials-grid {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .footer-bottom {
        flex-direction: column
    }

    .feature-tabs {
        gap: 4px
    }

    .feature-tab {
        font-size: 11px;
        padding: 7px 10px
    }

    .feature-tab svg {
        display: none
    }

    .tab-exclusive-badge {
        font-size: 7px;
        padding: 1px 4px
    }

    .trust-stats {
        gap: 20px
    }

    .trust-number {
        font-size: 22px
    }

    .section-title {
        font-size: 26px
    }

    .cta-final h2 {
        font-size: 24px
    }

    .allinone,
    .faq-section,
    .pricing-section,
    .professionals,
    .testimonials,
    .works-section {
        padding: 60px 0
    }

    .feature-display {
        min-height: auto
    }

    .feature-img {
        padding: 20px
    }

    .feat-kanban-demo {
        flex-direction: column
    }

    .fk-col {
        min-width: 100%
    }

    .prof-tabs {
        gap: 4px
    }

    .prof-tab {
        font-size: 11px;
        padding: 7px 10px
    }

    .fa-branches {
        flex-direction: column
    }

    .fa-node {
        font-size: 13px;
        padding: 12px 16px;
        max-width: 100%
    }

    .fb-actions {
        flex-wrap: wrap
    }

    .fb-stats {
        flex-direction: row;
        gap: 16px
    }

    .fl-kanban-mini {
        flex-wrap: wrap;
        gap: 4px
    }

    .fl-km-col {
        min-width: calc(50% - 4px)
    }

    .voip-step {
        flex-direction: column;
        text-align: center
    }

    .voip-branches {
        flex-direction: column
    }

    .voip-branch {
        min-width: 100%
    }

    .cta-trust {
        flex-direction: column;
        align-items: center;
        gap: 8px
    }

    .hero-integrations {
        flex-direction: column;
        gap: 10px
    }

    .feat-type-grid {
        gap: 8px
    }

    .feat-type-item {
        min-width: 70px;
        padding: 10px 12px
    }

    .feat-section-header {
        flex-wrap: wrap;
        gap: 10px
    }

    .feat-exclusive-tag {
        margin-left: 0
    }

    .hero-social-proof {
        flex-direction: column;
        align-items: center;
        gap: 12px
    }

    .proof-badge {
        width: 100%;
        max-width: 280px;
        justify-content: center
    }

    .works-card {
        padding: 24px
    }

    .wci-content {
        padding: 24px;
        gap: 12px;
        font-size: 28px
    }

    .platform-icons {
        gap: 16px
    }

    .mockup-video-wrapper {
        aspect-ratio: auto
    }

    .pricing-card {
        padding: 28px 20px
    }

    .pricing-price {
        font-size: 36px
    }

    .fb-field {
        flex-direction: column;
        gap: 4px
    }

    .fb-field label {
        min-width: auto
    }

    .fl-sync-visual {
        gap: 12px
    }
}

@media(max-width:480px) {
    .hero-title {
        font-size: 24px
    }

    .container {
        padding: 0 16px
    }

    .hero-badge {
        font-size: 11px;
        padding: 4px 12px
    }

    .feature-tab {
        font-size: 10px;
        padding: 6px 8px
    }

    .faq-question {
        font-size: 14px;
        padding: 14px 16px
    }

    .faq-answer p {
        padding: 0 16px 14px
    }

    .works-card h3 {
        font-size: 18px
    }

    .pricing-grid {
        max-width: 100%
    }

    .testimonial-card {
        padding: 18px
    }

    .prof-feature {
        flex-direction: column;
        gap: 10px;
        padding: 18px
    }

    .pf-icon {
        width: 40px;
        height: 40px;
        font-size: 22px
    }

    .feat-highlight-item {
        flex-direction: column;
        gap: 8px
    }

    .fhi-icon {
        font-size: 18px
    }

    .cta-final {
        padding: 60px 0
    }

    .cta-final h2 {
        font-size: 20px
    }

    .cta-final p {
        font-size: 14px
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 14px
    }

    .integration-icons {
        gap: 8px
    }

    .int-icon {
        width: 32px;
        height: 32px;
        font-size: 16px
    }
}

.hero-labels-sync {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    max-width: 720px;
    margin: 32px auto 0;
    padding: 20px 24px;
    background: var(--bg-white);
    border: 1px solid #d1fae5;
    border-radius: var(--radius-lg);
    text-align: left;
    animation: fadeInUp .6s ease .6s both;
    transition: box-shadow var(--transition)
}

.hero-labels-sync:hover {
    box-shadow: var(--shadow-md)
}

.hls-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: #ecfdf5;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center
}

.hls-content strong {
    font-size: 14px;
    font-weight: 700;
    display: block;
    margin-bottom: 6px;
    color: var(--text-primary)
}

.hls-content p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6
}

@media(max-width:768px) {
    .hero-labels-sync {
        flex-direction: column;
        gap: 12px;
        padding: 16px 18px;
        margin: 24px auto 0
    }

    .hls-content strong {
        font-size: 13px
    }

    .hls-content p {
        font-size: 12px
    }
}