/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #2563EB;
    --primary-blue-dark: #1E40AF;
    --primary-blue-light: #3B82F6;
    --primary-blue-lighter: #60A5FA;
    --primary-blue-lightest: #DBEAFE;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --gradient-blue: linear-gradient(135deg, #2563EB 0%, #3B82F6 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--gray-900);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 24px;
    color: var(--primary-blue);
    text-decoration: none;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav {
    display: flex;
    gap: 24px;
    flex: 1;
    justify-content: center;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 8px;
}

.nav-link:hover {
    color: var(--primary-blue);
    background: rgba(37, 99, 235, 0.05);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 12px;
    right: 12px;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
    border-radius: 2px 2px 0 0;
}

.nav-link:hover::after {
    width: calc(100% - 24px);
}

.nav-link svg {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.dropdown:hover .nav-link svg {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border: 1px solid var(--gray-200);
    padding: 8px;
    overflow: hidden;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    color: var(--gray-700);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    border-radius: 8px;
    position: relative;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(37, 99, 235, 0.02) 100%);
    color: var(--primary-blue);
    transform: translateX(4px);
}

.dropdown-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F0F7FF 0%, #E0EFFF 100%);
    border-radius: 8px;
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.dropdown-item:hover .dropdown-icon {
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
    transform: scale(1.1);
}

.dropdown-content {
    flex: 1;
    min-width: 0;
}

.dropdown-title {
    font-weight: 600;
    font-size: 14px;
    color: var(--gray-900);
    margin-bottom: 2px;
    transition: color 0.2s ease;
}

.dropdown-item:hover .dropdown-title {
    color: var(--primary-blue);
}

.dropdown-desc {
    font-size: 12px;
    color: var(--gray-500);
    line-height: 1.4;
}

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

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

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-blue);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-ghost {
    background: transparent;
    color: var(--gray-700);
}

.btn-ghost:hover {
    background: var(--gray-100);
    color: var(--primary-blue);
}

.btn-large {
    padding: 14px 28px;
    font-size: 16px;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 140px 0 100px;
    overflow: hidden;
    background: linear-gradient(180deg, #F0F7FF 0%, #FFFFFF 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    animation: fadeInUp 0.8s ease;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--primary-blue-lightest);
    color: var(--primary-blue);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    animation: fadeIn 1s ease;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--gray-900);
}

.gradient-text {
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 32px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--gray-600);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: fadeInRight 0.6s ease;
}

.dashboard-mockup {
    position: relative;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-2xl);
    overflow: visible;
    transform: perspective(1000px) rotateY(-3deg) rotateX(2deg);
    transition: transform 0.4s ease;
}

.dashboard-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.mockup-header {
    background: var(--gray-50);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--gray-200);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
}

.mockup-dots span:nth-child(1) {
    background: #FF5F57;
}

.mockup-dots span:nth-child(2) {
    background: #FFBD2E;
}

.mockup-dots span:nth-child(3) {
    background: #28CA42;
}

.mockup-title {
    font-weight: 600;
    color: var(--gray-700);
    font-size: 14px;
}

.mockup-content {
    position: relative;
    overflow: hidden;
}

.channel-tabs {
    display: flex;
    gap: 8px;
    padding: 16px;
    border-bottom: 1px solid var(--gray-200);
    background: var(--gray-50);
}

.channel-tab {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-600);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.channel-tab.active {
    background: var(--primary-blue);
    color: var(--white);
}

.messages-list {
    padding: 16px;
    max-height: 400px;
    overflow-y: auto;
}

.message-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.message-item:hover {
    background: var(--gray-50);
    transform: translateX(4px);
}

.message-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
    border: 2px solid var(--white);
    box-shadow: var(--shadow-sm);
}

.message-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.message-avatar.whatsapp {
    border-color: #25D366;
}

.message-avatar.instagram {
    border-color: #DD2A7B;
}

.message-avatar.tiktok {
    border-color: #FE2C55;
}

.mockup-actions {
    display: flex;
    gap: 12px;
    padding: 16px;
    border-top: 1px solid var(--gray-200);
    background: var(--gray-50);
}

.mockup-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mockup-btn.ai-btn {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    color: var(--white);
}

.mockup-btn.auto-btn {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: var(--white);
}

.mockup-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.pipeline-preview {
    position: absolute;
    bottom: -30px;
    left: 20px;
    background: var(--white);
    padding: 14px 18px;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideInUp 0.6s ease 0.3s both;
    z-index: 10;
    border: 1px solid var(--gray-200);
    min-width: 160px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pipeline-preview:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-blue);
}

.pipeline-icon {
    font-size: 20px;
    line-height: 1;
}

.pipeline-text {
    font-weight: 600;
    font-size: 14px;
    color: var(--gray-700);
    white-space: nowrap;
}

.message-content {
    flex: 1;
    min-width: 0;
}

.message-name {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 4px;
    font-size: 14px;
}

.message-text {
    color: var(--gray-600);
    font-size: 13px;
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.message-time {
    color: var(--gray-400);
    font-size: 12px;
}

.message-badge {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    align-self: flex-start;
    margin-top: 4px;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: float 4s ease-in-out infinite;
}

.floating-card .card-icon {
    font-size: 20px;
}

.floating-card .card-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
}

.floating-card.card-1 {
    top: -20px;
    right: -20px;
    animation-delay: 0s;
}

.floating-card.card-3 {
    top: 50%;
    right: -30px;
    animation-delay: 2s;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-blue-lightest);
    opacity: 0.4;
    animation: pulse 6s ease-in-out infinite;
}

.bg-circle.circle-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.bg-circle.circle-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -150px;
    animation-delay: 2s;
}

.bg-circle.circle-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 10%;
    animation-delay: 4s;
}

/* What is Seya */
.what-is-seya {
    padding: 100px 0;
    background: var(--white);
}

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

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 24px;
}

.section-description {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.7;
}

.what-is-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.central-hub {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hub-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 26px;
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.3);
    z-index: 2;
    animation: pulse 2s ease-in-out infinite;
}

.channel-icons {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.channel-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: floatIn 0.8s ease forwards, orbitRotate 40s linear infinite;
    opacity: 0;
    cursor: pointer;
    transform-origin: center center;
}

.channel-icon .icon-wrapper {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    animation: scalePulse 8s ease-in-out infinite;
}

.channel-icon.whatsapp-icon .icon-wrapper {
    animation-delay: 0s;
}

.channel-icon.instagram-icon .icon-wrapper {
    animation-delay: 1.6s;
}

.channel-icon.tiktok-icon .icon-wrapper {
    animation-delay: 3.2s;
}

.channel-icon.telegram-icon .icon-wrapper {
    animation-delay: 4.8s;
}

.channel-icon.messenger-icon .icon-wrapper {
    animation-delay: 6.4s;
}

.channel-icon .icon-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.1);
    transition: all 0.4s ease;
}

.channel-icon:hover .icon-wrapper {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.channel-icon:hover .icon-wrapper::before {
    width: 100px;
    height: 100px;
}

.channel-icon.whatsapp-icon:hover .icon-wrapper {
    transform: scale(1.15) rotate(-5deg);
    animation: bounce 0.6s ease infinite;
}

.channel-icon.instagram-icon:hover .icon-wrapper {
    transform: scale(1.15) rotate(10deg);
    animation: rotate 2s linear infinite;
}

.channel-icon.tiktok-icon:hover .icon-wrapper {
    transform: scale(1.15) rotate(-10deg);
    animation: shake 0.5s ease infinite;
}

.channel-icon.telegram-icon:hover .icon-wrapper {
    transform: scale(1.15) rotate(5deg);
    animation: floatIcon 2s ease-in-out infinite;
}

.channel-icon.messenger-icon:hover .icon-wrapper {
    transform: scale(1.15) rotate(-5deg);
    animation: pulse 1.5s ease-in-out infinite;
}

.channel-icon svg {
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.channel-icon:hover svg {
    transform: scale(1.1);
}

.channel-icon span {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    transition: all 0.3s ease;
    text-align: center;
}

.channel-icon:hover span {
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.channel-icon.whatsapp-icon {
    animation-delay: 0.2s, 0s;
    --orbit-radius-x: 260px;
    --orbit-radius-y: 200px;
    --orbit-angle: 0deg;
}

.channel-icon.instagram-icon {
    animation-delay: 0.4s, -8s;
    --orbit-radius-x: 260px;
    --orbit-radius-y: 200px;
    --orbit-angle: 72deg;
}

.channel-icon.tiktok-icon {
    animation-delay: 0.6s, -16s;
    --orbit-radius-x: 260px;
    --orbit-radius-y: 200px;
    --orbit-angle: 144deg;
}

.channel-icon.telegram-icon {
    animation-delay: 0.8s, -24s;
    --orbit-radius-x: 260px;
    --orbit-radius-y: 200px;
    --orbit-angle: 216deg;
}

.channel-icon.messenger-icon {
    animation-delay: 1s, -32s;
    --orbit-radius-x: 260px;
    --orbit-radius-y: 200px;
    --orbit-angle: 288deg;
}

.what-is-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.what-is-features .feature-card {
    padding: 0;
    background: transparent;
    border-radius: 0;
    transition: none;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 32px;
}

.what-is-features .feature-card:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.what-is-features .feature-card:hover {
    background: transparent;
    box-shadow: none;
    transform: none;
}

.feature-icon-wrapper {
    position: relative;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.feature-checkmark {
    position: absolute;
    top: -6px;
    left: -6px;
    z-index: 100;
    pointer-events: none;
    background: var(--white);
    border-radius: 50%;
    padding: 2px;
}

.feature-icon-bg {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: box-shadow 1s ease-out;
    position: relative;
    z-index: 1;
}

.feature-icon-1 {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
}

.feature-icon-2 {
    background: linear-gradient(135deg, #EC4899 0%, #DB2777 100%);
}

.feature-icon-3 {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

.feature-card:hover .feature-icon-bg {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: box-shadow 1s ease-out;
}

.feature-content {
    flex: 1;
}

.what-is-features .feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
    line-height: 1.3;
}

.what-is-features .feature-card p {
    color: var(--gray-600);
    line-height: 1.8;
    font-size: 15px;
}

/* Diğer feature-card stilleri (features section için) */
.feature-card {
    padding: 32px;
    background: var(--gray-50);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--gray-50);
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.feature-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-item.reverse {
    direction: rtl;
}

.feature-item.reverse > * {
    direction: ltr;
}

.feature-visual {
    position: relative;
}

.inbox-mockup,
.pipeline-mockup,
.ai-mockup,
.bot-mockup,
.tasks-mockup,
.templates-mockup,
.profile-mockup,
.integrations-mockup,
.inbox-diagram,
.ai-conversation-diagram {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-xl);
    animation: fadeInUp 0.8s ease;
}

.inbox-header,
.pipeline-header,
.ai-header,
.bot-header,
.tasks-header {
    font-weight: 700;
    font-size: 18px;
    color: var(--gray-900);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 10px;
}

.tasks-header-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
    border-radius: 8px;
    color: var(--primary-blue);
}

.templates-header {
    font-weight: 700;
    font-size: 18px;
    color: var(--gray-900);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 10px;
}

.templates-header-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
    border-radius: 8px;
    color: var(--primary-blue);
}

.profile-header {
    font-weight: 700;
    font-size: 18px;
    color: var(--gray-900);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-header-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
    border-radius: 8px;
    color: var(--primary-blue);
}

.integrations-header {
    font-weight: 700;
    font-size: 18px;
    color: var(--gray-900);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 10px;
}

.integrations-header-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
    border-radius: 8px;
    color: var(--primary-blue);
}

.inbox-diagram-header,
.ai-diagram-header {
    font-weight: 700;
    font-size: 18px;
    color: var(--gray-900);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gray-200);
}

/* Inbox Diagram Styles */
.inbox-diagram-content {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F0F7FF 0%, #FFFFFF 100%);
    border-radius: 12px;
    padding: 30px;
    overflow: hidden;
}

.inbox-central-screen {
    position: absolute;
    top: 15%;
    left: 8%;
    width: 320px;
    height: 280px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.05);
    z-index: 15;
    overflow: hidden;
    animation: fadeInScale 0.8s ease forwards;
    opacity: 0;
    border: 1px solid rgba(37, 99, 235, 0.08);
}

.screen-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.screen-header-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.screen-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.2px;
}

.screen-subtitle {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.screen-badge {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.screen-messages {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: calc(100% - 70px);
    overflow-y: auto;
    background: linear-gradient(to bottom, #FAFBFC 0%, #FFFFFF 100%);
}

.screen-messages::-webkit-scrollbar {
    width: 6px;
}

.screen-messages::-webkit-scrollbar-track {
    background: transparent;
}

.screen-messages::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
}

.screen-messages::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.2);
}

.message-item {
    display: flex;
    gap: 10px;
    padding: 12px;
    background: var(--white);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
    position: relative;
}

.message-item:nth-child(1) { animation-delay: 0.2s; }
.message-item:nth-child(2) { animation-delay: 0.4s; }
.message-item:nth-child(3) { animation-delay: 0.6s; }
.message-item:nth-child(4) { animation-delay: 0.8s; }

.message-item:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: rgba(37, 99, 235, 0.2);
}

.message-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: visible;
    flex-shrink: 0;
    border: 2px solid var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.message-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.message-status {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.message-status.online {
    background: #10B981;
}

.message-status.away {
    background: #F59E0B;
}

.message-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.message-header {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}

.message-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-900);
    letter-spacing: -0.1px;
}

.message-time {
    font-size: 10px;
    font-weight: 500;
    color: var(--gray-500);
    margin-left: auto;
}

.message-platform {
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 8px;
    color: var(--white);
}

.message-platform.whatsapp {
    background: #25D366;
}

.message-platform.instagram {
    background: linear-gradient(135deg, #F58529 0%, #DD2A7B 100%);
}

.message-platform.tiktok {
    background: #000000;
}

.message-platform.telegram {
    background: #0088CC;
}

.message-text {
    font-size: 12px;
    color: var(--gray-700);
    line-height: 1.4;
    margin-top: 2px;
}

.message-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    border: 2px solid var(--white);
    box-shadow: 0 1px 4px rgba(239, 68, 68, 0.3);
}

.platform-cards-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}


.platform-card-mini {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: fadeInScale 0.6s ease forwards;
    opacity: 0;
    cursor: pointer;
    pointer-events: all;
    min-width: 110px;
    max-width: 130px;
    z-index: 5;
}

.platform-card-mini:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Top Cards - Grid Layout */
.platform-card-mini.platform-card-top-1 {
    top: 8%;
    left: 45%;
    transform: translateX(-50%);
    animation-delay: 0.2s;
}

.platform-card-mini.platform-card-top-1:hover {
    transform: translateX(-50%) translateY(-4px) scale(1.05);
}

.platform-card-mini.platform-card-top-2 {
    top: 8%;
    left: 70%;
    transform: translateX(-50%);
    animation-delay: 0.3s;
}

.platform-card-mini.platform-card-top-2:hover {
    transform: translateX(-50%) translateY(-4px) scale(1.05);
}

/* Right Cards - Grid Layout */
.platform-card-mini.platform-card-right-1 {
    top: 40%;
    right: 5%;
    transform: translateY(-50%);
    animation-delay: 0.4s;
}

.platform-card-mini.platform-card-right-1:hover {
    transform: translateY(-50%) translateY(-4px) scale(1.05);
}

.platform-card-mini.platform-card-right-2 {
    top: 70%;
    right: 5%;
    transform: translateY(-50%);
    animation-delay: 0.5s;
}

.platform-card-mini.platform-card-right-2:hover {
    transform: translateY(-50%) translateY(-4px) scale(1.05);
}

/* Bottom Cards - Grid Layout */
.platform-card-mini.platform-card-bottom-1 {
    bottom: 8%;
    left: 45%;
    transform: translateX(-50%);
    animation-delay: 0.6s;
}

.platform-card-mini.platform-card-bottom-1:hover {
    transform: translateX(-50%) translateY(-4px) scale(1.05);
}

.platform-card-mini.platform-card-bottom-2 {
    bottom: 8%;
    left: 70%;
    transform: translateX(-50%);
    animation-delay: 0.7s;
}

.platform-card-mini.platform-card-bottom-2:hover {
    transform: translateX(-50%) translateY(-4px) scale(1.05);
}

/* Left Cards - Grid Layout */
.platform-card-mini.platform-card-left-1 {
    top: 40%;
    left: 5%;
    transform: translateY(-50%);
    animation-delay: 0.8s;
}

.platform-card-mini.platform-card-left-1:hover {
    transform: translateY(-50%) translateY(-4px) scale(1.05);
}

.platform-card-mini.platform-card-left-2 {
    top: 70%;
    left: 5%;
    transform: translateY(-50%);
    animation-delay: 0.9s;
}

.platform-card-mini.platform-card-left-2:hover {
    transform: translateY(-50%) translateY(-4px) scale(1.05);
}

.user-avatar-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-badge {
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--white);
    z-index: 2;
    transition: all 0.3s ease;
}

.inbox-user-card:hover .platform-badge {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.platform-badge svg {
    width: 100%;
    height: 100%;
}

.inbox-user-avatar {
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--white);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
}

.platform-card-mini:hover .inbox-user-avatar {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

.inbox-user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.platform-card-mini[data-platform="whatsapp"] .inbox-user-avatar {
    border-color: #25D366;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25);
}

.platform-card-mini[data-platform="instagram"] .inbox-user-avatar {
    border-color: #DD2A7B;
    box-shadow: 0 4px 16px rgba(221, 42, 123, 0.25);
}

.platform-card-mini[data-platform="tiktok"] .inbox-user-avatar {
    border-color: #FE2C55;
    box-shadow: 0 4px 16px rgba(254, 44, 85, 0.25);
}

.platform-card-mini[data-platform="messenger"] .inbox-user-avatar {
    border-color: #0084FF;
    box-shadow: 0 4px 16px rgba(0, 132, 255, 0.25);
}

.platform-card-mini[data-platform="telegram"] .inbox-user-avatar {
    border-color: #0088CC;
    box-shadow: 0 4px 16px rgba(0, 136, 204, 0.25);
}

.inbox-user-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-900);
    text-align: center;
    white-space: nowrap;
    line-height: 1.2;
}

.inbox-user-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    border: 3px solid var(--white);
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
    z-index: 3;
}

.inbox-user-platform {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: var(--gray-50);
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-700);
    margin-top: 4px;
}

.inbox-user-platform svg {
    flex-shrink: 0;
}

.inbox-user-platform span {
    white-space: nowrap;
}

.inbox-user-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    border: 3px solid var(--white);
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
    z-index: 3;
}

/* AI Conversation Diagram Styles */
.ai-conversation-flow {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F0F7FF 0%, #FFFFFF 100%);
    border-radius: 12px;
    padding: 30px;
    overflow: hidden;
}

.chat-conversation {
    width: 100%;
    max-width: 500px;
    max-height: 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    overflow-y: auto;
    overflow-x: hidden;
}

.chat-conversation::-webkit-scrollbar {
    width: 6px;
}

.chat-conversation::-webkit-scrollbar-track {
    background: transparent;
}

.chat-conversation::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
}

.chat-conversation::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.2);
}

.chat-message {
    display: flex;
    gap: 12px;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.chat-message.user-message {
    flex-direction: row;
    align-items: flex-end;
}

.chat-message.user-message:nth-child(1) { animation-delay: 0.2s; }
.chat-message.user-message:nth-child(3) { animation-delay: 0.6s; }

.chat-message.ai-message {
    flex-direction: row-reverse;
    align-items: flex-end;
}

.chat-message.ai-message:nth-child(2) { animation-delay: 0.4s; }
.chat-message.ai-message:nth-child(4) { animation-delay: 0.8s; }

.message-avatar-wrapper {
    flex-shrink: 0;
}

.chat-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
}

.chat-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chat-avatar.ai-avatar {
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
    border-color: var(--primary-blue);
}

.ai-icon {
    font-size: 28px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.ai-badge-small {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 22px;
    height: 22px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
    color: var(--white);
    border: 2px solid var(--white);
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.4);
}

.chat-bubble {
    max-width: 70%;
    padding: 14px 18px;
    border-radius: 18px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.chat-message:hover .chat-bubble {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.user-bubble {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.user-bubble::after {
    content: '';
    position: absolute;
    bottom: 12px;
    left: -8px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid var(--white);
}

.ai-bubble {
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
    border: 2px solid var(--primary-blue);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.15);
}

.ai-bubble::after {
    content: '';
    position: absolute;
    bottom: 12px;
    right: -8px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid #DBEAFE;
}

.bubble-text {
    font-size: 14px;
    color: var(--gray-800);
    line-height: 1.5;
    margin-bottom: 6px;
}

.ai-bubble .bubble-text {
    color: var(--primary-blue-dark);
    font-weight: 600;
}

.bubble-time {
    font-size: 11px;
    color: var(--gray-500);
    text-align: right;
    margin-top: 4px;
}

.user-bubble .bubble-time {
    text-align: left;
}

/* Product Preview in Chat */
.product-preview {
    margin-top: 10px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(37, 99, 235, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.product-preview img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
}

.product-info {
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-900);
}

.product-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-blue);
}

/* AI Link in Chat */
.ai-link {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding: 10px 14px;
    background: var(--white);
    border-radius: 10px;
    text-decoration: none;
    color: var(--primary-blue);
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(37, 99, 235, 0.2);
    transition: all 0.3s ease;
}

.ai-link:hover {
    background: rgba(37, 99, 235, 0.05);
    border-color: var(--primary-blue);
    transform: translateX(4px);
}

.link-icon {
    font-size: 16px;
}

.link-arrow {
    margin-left: auto;
    font-size: 14px;
    opacity: 0.7;
}

/* Appointment Options */
.appointment-options {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.appointment-slot {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: var(--white);
    border-radius: 10px;
    border: 1px solid rgba(37, 99, 235, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
}

.appointment-slot:hover {
    background: rgba(37, 99, 235, 0.05);
    border-color: var(--primary-blue);
    transform: translateX(4px);
}

.slot-date {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-700);
    min-width: 70px;
}

.slot-time {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-blue);
    padding: 4px 10px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 6px;
}

/* Search Results */
.search-results {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--white);
    border-radius: 10px;
    border: 1px solid rgba(37, 99, 235, 0.15);
}

.result-icon {
    font-size: 16px;
    flex-shrink: 0;
}

.result-text {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-800);
}

.inbox-channels {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.channel-badge {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    background: var(--gray-100);
    color: var(--gray-600);
}

.channel-badge.active {
    background: var(--primary-blue);
    color: var(--white);
}

.pipeline-diagram {
    position: relative;
    width: 100%;
    padding: 40px 30px;
    background: linear-gradient(135deg, #F8FAFF 0%, #FFFFFF 100%);
    border-radius: 16px;
    overflow: visible;
}

.pipeline-grid {
    display: grid;
    grid-template-columns: auto 1fr 1fr;
    gap: 50px;
    align-items: start;
    justify-items: start;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 0;
}

.pipeline-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.pipeline-column.hub-column {
    justify-content: center;
    align-items: center;
    width: auto;
    min-width: 120px;
    align-self: center;
}

.pipeline-column.stages-column {
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
}

.pipeline-column.functions-column {
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
}

/* Pipeline Nodes */
.pipeline-node {
    position: relative;
    z-index: 5;
    animation: fadeInScale 0.5s ease forwards;
    opacity: 0;
    cursor: pointer;
    width: 100%;
}

.pipeline-node.hub-node {
    width: auto;
    max-width: none;
}

.pipeline-node.stage-node,
.pipeline-node.function-node {
    width: 100%;
    max-width: 240px;
    min-width: 220px;
}

/* Node Pulse Effect */
.node-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: transparent;
    pointer-events: none;
    z-index: -1;
}

/* Hover effects handled by JavaScript */
.pipeline-node:hover {
    filter: drop-shadow(0 0 16px rgba(37, 99, 235, 0.5));
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.pipeline-node.hub-node {
    animation-delay: 0.1s;
    margin: auto 0;
}

.pipeline-node.stage-node {
    animation-delay: 0.3s;
}

.pipeline-node.stage-node:nth-child(1) { animation-delay: 0.2s; }
.pipeline-node.stage-node:nth-child(2) { animation-delay: 0.3s; }
.pipeline-node.stage-node:nth-child(3) { animation-delay: 0.4s; }
.pipeline-node.stage-node:nth-child(4) { animation-delay: 0.5s; }

.pipeline-node.function-node {
    animation-delay: 0.6s;
}

.pipeline-node.function-node:nth-child(1) { animation-delay: 0.6s; }
.pipeline-node.function-node:nth-child(2) { animation-delay: 0.7s; }
.pipeline-node.function-node:nth-child(3) { animation-delay: 0.8s; }
.pipeline-node.function-node:nth-child(4) { animation-delay: 0.9s; }

/* Hub Styles */
.hub-logo {
    width: 100px;
    height: 70px;
    background: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    font-size: 22px;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
    border: 3px solid var(--white);
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.pipeline-node.hub-node:hover .hub-logo {
    box-shadow: 0 6px 24px rgba(37, 99, 235, 0.5);
    transform: scale(1.05);
}

.hub-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

/* Stage Card Styles */
.stage-mini-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--white);
    border-radius: 10px;
    width: 100%;
    height: 64px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}

.stage-mini-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--gray-300);
}

.pipeline-node.stage-node:hover .stage-mini-card {
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.25);
    border-color: var(--primary-blue-light);
}

.stage-mini-card.active {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.25);
    color: var(--white);
}

.stage-mini-card.satış-card {
    background: #ECFDF5;
    border-color: #10B981;
}

.stage-mini-card.satış-card .stage-mini-title,
.stage-mini-card.satış-card .stage-mini-count {
    color: #10B981;
}

.stage-mini-icon {
    font-size: 22px;
    line-height: 1;
    flex-shrink: 0;
    width: 28px;
    text-align: center;
}

.stage-mini-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    flex: 1;
    line-height: 1.2;
}

.stage-mini-card.active .stage-mini-title {
    color: var(--white);
}

.stage-mini-count {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-blue);
    padding: 4px 10px;
    background: var(--primary-blue-lightest);
    border-radius: 12px;
    min-width: 36px;
    text-align: center;
    line-height: 1.2;
}

.stage-mini-card.active .stage-mini-count {
    color: var(--white);
    background: rgba(255, 255, 255, 0.2);
}

.function-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--white);
    border-radius: 10px;
    width: 100%;
    height: 64px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}

.function-card:hover {
    transform: translateX(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-blue-light);
}

.pipeline-node.function-node:hover .function-card {
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.25);
    border-color: var(--primary-blue-light);
}

.function-icon {
    font-size: 24px;
    line-height: 1;
    flex-shrink: 0;
    width: 32px;
    text-align: center;
}

.function-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.function-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1.3;
    margin-bottom: 2px;
}

.function-desc {
    font-size: 11px;
    color: var(--gray-500);
    font-weight: 500;
    line-height: 1.2;
}

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

.ai-suggestion {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--gray-50);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.ai-suggestion.active {
    background: var(--primary-blue-lightest);
    border: 2px solid var(--primary-blue);
}

.ai-icon {
    font-size: 24px;
}

.ai-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
}

.bot-builder {
    padding: 40px 30px;
    background: linear-gradient(135deg, #F8FAFF 0%, #FFFFFF 100%);
    border-radius: 12px;
    min-height: 500px;
}

.bot-flow-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    min-height: 450px;
    padding: 20px 0;
}

.bot-node-wrapper {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.bot-node-wrapper.start-wrapper { animation-delay: 0.1s; }
.bot-node-wrapper.message-wrapper { animation-delay: 0.3s; }
.bot-node-wrapper.condition-wrapper { animation-delay: 0.5s; }

.bot-node {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-radius: 12px;
    min-width: 240px;
    max-width: 280px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    position: relative;
}

.bot-node:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.bot-node-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
}

.bot-node-icon svg {
    width: 20px;
    height: 20px;
}

.bot-node-content {
    flex: 1;
    text-align: left;
}

.bot-node-title {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 3px;
}

.bot-node-desc {
    font-size: 11px;
    opacity: 0.8;
    font-weight: 500;
}

.bot-status-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border: 2px solid;
}

.bot-status-badge.active {
    color: #10B981;
    border-color: #10B981;
    background: rgba(16, 185, 129, 0.1);
}

/* Start Node */
.start-node {
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.2);
}

.start-icon {
    background: rgba(255, 255, 255, 0.2);
}

.start-node .bot-node-desc {
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
}

/* Message Node */
.message-node {
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
    color: var(--primary-blue-dark);
    border-color: rgba(37, 99, 235, 0.2);
}

.message-icon {
    background: rgba(37, 99, 235, 0.15);
}

/* Condition Node */
.condition-node {
    background: linear-gradient(135deg, #F3F4F6 0%, #E5E7EB 100%);
    color: var(--gray-800);
    border-color: rgba(0, 0, 0, 0.1);
}

.condition-icon {
    background: rgba(0, 0, 0, 0.1);
}

/* Yes/No Nodes */
.yes-node {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    color: #92400E;
    border-color: #FCD34D;
    min-width: 100px;
    max-width: 120px;
    padding: 12px 16px;
    gap: 10px;
}

.yes-icon {
    background: rgba(146, 64, 14, 0.15);
    width: 28px;
    height: 28px;
}

.yes-icon svg {
    width: 14px;
    height: 14px;
}

.no-node {
    background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%);
    color: #991B1B;
    border-color: #FCA5A5;
    min-width: 100px;
    max-width: 120px;
    padding: 12px 16px;
    gap: 10px;
}

.no-icon {
    background: rgba(153, 27, 27, 0.15);
    width: 28px;
    height: 28px;
}

.no-icon svg {
    width: 14px;
    height: 14px;
}

.yes-node .bot-node-title,
.no-node .bot-node-title {
    font-size: 14px;
    margin-bottom: 0;
}

/* Connection Arrows */
.bot-connection-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 6px 0;
    animation: fadeIn 0.5s ease forwards;
    opacity: 0;
    height: 32px;
}

.bot-connection-arrow:nth-of-type(1) { animation-delay: 0.2s; }
.bot-connection-arrow:nth-of-type(2) { animation-delay: 0.4s; }

.bot-connection-arrow svg {
    filter: drop-shadow(0 1px 3px rgba(37, 99, 235, 0.15));
    width: 16px;
    height: 32px;
}

/* Branches Container */
.bot-branches-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 450px;
    margin-top: 16px;
    padding: 16px 0;
    gap: 30px;
}

.bot-branch-left,
.bot-branch-right {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    flex: 1;
}

.bot-branch-left {
    animation-delay: 0.7s;
    align-items: flex-end;
}

.bot-branch-right {
    animation-delay: 0.9s;
    align-items: flex-start;
}

.bot-branch-arrow-left,
.bot-branch-arrow-right {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.5s ease forwards;
    opacity: 0;
    height: 20px;
}

.bot-branch-arrow-left {
    animation-delay: 0.6s;
}

.bot-branch-arrow-right {
    animation-delay: 0.8s;
}

.bot-branch-arrow-left svg,
.bot-branch-arrow-right svg {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

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

.task-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.task-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-blue-light);
    transform: translateY(-2px);
}

.task-item.pending {
    border-left: 3px solid #F59E0B;
}

.task-item.completed {
    background: var(--gray-50);
    opacity: 0.9;
}

.task-checkbox-wrapper {
    flex-shrink: 0;
    margin-top: 2px;
}

.task-checkbox {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gray-300);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--gray-400);
}

.task-checkbox:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.task-checkbox.checked {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--white);
}

.task-content {
    flex: 1;
    min-width: 0;
}

.task-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.task-title {
    font-weight: 600;
    color: var(--gray-900);
    font-size: 15px;
    flex: 1;
}

.task-priority {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.task-priority.high {
    background: rgba(239, 68, 68, 0.1);
    color: #DC2626;
}

.task-status-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.task-status-badge.completed-badge {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.task-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.task-time {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--gray-600);
    font-weight: 500;
}

.task-time svg {
    color: var(--gray-400);
    flex-shrink: 0;
}

.task-time.completed-time {
    color: var(--gray-500);
}

.task-assignee {
    flex-shrink: 0;
}

.assignee-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gray-200);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.assignee-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.templates-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.template-item {
    padding: 18px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.template-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-blue-light);
    transform: translateY(-2px);
}

.template-icon-wrapper {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}

.price-icon {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    color: #92400E;
}

.catalog-icon {
    background: linear-gradient(135deg, #E0E7FF 0%, #C7D2FE 100%);
    color: #4C1D95;
}

.offer-icon {
    background: linear-gradient(135deg, #FCE7F3 0%, #FBCFE8 100%);
    color: #9F1239;
}

.info-icon {
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
    color: var(--primary-blue);
}

.template-icon-wrapper svg {
    width: 24px;
    height: 24px;
}

.template-content {
    flex: 1;
    width: 100%;
}

.template-title {
    font-weight: 700;
    font-size: 16px;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.template-desc {
    font-size: 12px;
    color: var(--gray-600);
    font-weight: 500;
}

.template-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 10px;
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
    color: var(--primary-blue);
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.15);
}

.profile-content {
    text-align: center;
    padding: 8px 0;
}

.profile-avatar-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 16px;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background: var(--gradient-blue);
    margin: 0 auto;
    position: relative;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.profile-status {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.profile-status.online {
    background: #10B981;
}

.profile-status.offline {
    background: var(--gray-400);
}

.profile-name {
    font-weight: 700;
    font-size: 20px;
    color: var(--gray-900);
    margin-bottom: 24px;
}

.profile-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.profile-tab {
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-600);
    background: var(--gray-100);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid transparent;
}

.profile-tab:hover {
    background: var(--gray-200);
    transform: translateY(-1px);
}

.profile-tab.active {
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    color: var(--white);
    border-color: var(--primary-blue);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.profile-tab svg {
    flex-shrink: 0;
}

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

.integration-item {
    padding: 18px 16px;
    background: var(--white);
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 13px;
    color: var(--gray-700);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.integration-item:hover {
    background: var(--white);
    border-color: var(--primary-blue-light);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.integration-badge {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: var(--white);
    flex-shrink: 0;
}

.whatsapp-badge {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.instagram-badge {
    background: linear-gradient(135deg, #E4405F 0%, #F56040 50%, #FCAF45 100%);
}

.tiktok-badge {
    background: linear-gradient(135deg, #000000 0%, #FF0050 100%);
}

.n8n-badge {
    background: linear-gradient(135deg, #FF6D5A 0%, #FF8E53 100%);
}

.zapier-badge {
    background: linear-gradient(135deg, #FF4A00 0%, #FF6B35 100%);
}

.ecommerce-badge {
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
}

.integration-title {
    font-weight: 600;
    font-size: 13px;
    color: var(--gray-900);
    margin: 0;
}

.feature-info {
    position: relative;
    padding-left: 80px;
}

.feature-number {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    font-size: 24px;
    box-shadow: var(--shadow-lg);
    z-index: 10;
}

.feature-info h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
    margin-top: 0;
}

.feature-info p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-list li {
    font-size: 15px;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Value Proposition */
.value-proposition {
    padding: 100px 0;
    background: var(--white);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.value-card {
    background: var(--gray-50);
    border-radius: 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.value-visual {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
}

.value-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.value-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.value-card:hover .value-image {
    transform: scale(1.1);
}

.value-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.8) 0%, rgba(59, 130, 246, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-card:hover .value-overlay {
    opacity: 1;
}

.value-overlay .value-icon {
    font-size: 64px;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.value-card:hover .value-overlay .value-icon {
    transform: scale(1);
}

.value-content {
    padding: 48px;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-blue);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-content .value-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.value-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.value-card p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 32px;
}

.value-stats {
    display: flex;
    gap: 32px;
}

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

.value-stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 4px;
}

.value-stat-label {
    font-size: 14px;
    color: var(--gray-600);
}

/* Comparison Table */
.comparison {
    padding: 100px 0;
    background: var(--gray-50);
}

.comparison-table {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    border-bottom: 2px solid var(--gray-200);
}

.comparison-header-item {
    padding: 24px 32px;
    font-weight: 700;
    font-size: 18px;
    color: var(--gray-900);
    display: flex;
    align-items: center;
    gap: 12px;
}

.comparison-header-item.seya-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.comparison-header-item.seya-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-brand svg {
    color: var(--white);
}

.comparison-body {
    display: flex;
    flex-direction: column;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    border-bottom: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

.comparison-row:hover {
    background: var(--gray-50);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-feature {
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-800);
}

.feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: 10px;
    color: var(--primary-blue);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.comparison-row:hover .feature-icon {
    background: var(--primary-blue-lightest);
    transform: scale(1.1);
}

.comparison-value {
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-value.seya-value {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(37, 99, 235, 0.02) 100%);
    border-left: 1px solid var(--gray-100);
    border-right: 1px solid var(--gray-100);
}

.value-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
}

.value-badge.success {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.value-badge.success svg {
    color: #16a34a;
    flex-shrink: 0;
}

.value-badge.error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.value-badge.error svg {
    color: #dc2626;
    flex-shrink: 0;
}

.comparison-value.competitor-value {
    background: var(--white);
}

@media (max-width: 1024px) {
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .comparison-header-item,
    .comparison-feature,
    .comparison-value {
        padding: 20px 24px;
    }
    
    .comparison-value.seya-value {
        border-left: none;
        border-right: none;
        border-top: 1px solid var(--gray-100);
        border-bottom: 1px solid var(--gray-100);
    }
    
    .comparison-value.competitor-value {
        border-top: none;
    }
}

/* Vision & Mission */
.vision-mission {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.vision-card {
    background: var(--white);
    border-radius: 24px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.vision-card:hover {
    box-shadow: var(--shadow-2xl);
    transform: translateY(-8px);
    border-color: var(--primary-blue-light);
}

.vision-card:hover::before {
    transform: scaleX(1);
}

.vision-card-header {
    padding: 40px 40px 32px;
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

.vision-icon-wrapper {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    border-radius: 16px;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.vision-card:hover .vision-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.vision-card-header h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
}

.vision-card-content {
    padding: 32px 40px 40px;
}

.vision-card-content ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.vision-card-content li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.7;
    transition: all 0.3s ease;
}

.vision-card-content li:hover {
    color: var(--gray-900);
    transform: translateX(4px);
}

.list-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
    border-radius: 6px;
    color: #16a34a;
    flex-shrink: 0;
    margin-top: 2px;
    border: 1px solid rgba(34, 197, 94, 0.2);
    transition: all 0.3s ease;
}

.vision-card-content li:hover .list-icon {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(34, 197, 94, 0.1) 100%);
    transform: scale(1.1);
}

.vision-card-content li span {
    flex: 1;
}

@media (max-width: 1024px) {
    .vision-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .vision-card-header {
        padding: 32px 32px 24px;
    }
    
    .vision-card-content {
        padding: 24px 32px 32px;
    }
    
    .vision-icon-wrapper {
        width: 56px;
        height: 56px;
    }
    
    .vision-card-header h3 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .vision-card-header {
        padding: 24px 24px 20px;
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .vision-card-content {
        padding: 20px 24px 24px;
    }
    
    .vision-card-content li {
        font-size: 15px;
    }
}

/* Roadmap */
.roadmap {
    padding: 100px 0;
    background: var(--gray-50);
}

.roadmap-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 40px;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gray-200);
}

.timeline-item {
    position: relative;
    margin-bottom: 48px;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }
.timeline-item:nth-child(6) { animation-delay: 0.6s; }
.timeline-item:nth-child(7) { animation-delay: 0.7s; }
.timeline-item:nth-child(8) { animation-delay: 0.8s; }

.timeline-dot {
    position: absolute;
    left: -32px;
    top: 8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--white);
    border: 4px solid var(--primary-blue);
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.timeline-content {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(8px);
}

.timeline-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Growth Strategy */
.growth-strategy {
    padding: 100px 0;
    background: var(--white);
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.strategy-card {
    padding: 32px;
    background: var(--gray-50);
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.strategy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-blue);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.strategy-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.strategy-card:hover::before {
    transform: scaleY(1);
}

.strategy-number {
    width: 48px;
    height: 48px;
    background: var(--gradient-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    font-size: 20px;
    margin-bottom: 20px;
}

.strategy-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.strategy-card p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* CTA Section */
/* Pricing Section */
.pricing {
    padding: 60px 0;
    background: linear-gradient(180deg, #F0F7FF 0%, #FFFFFF 100%);
}

.pricing .section-header {
    margin-bottom: 40px;
}

.pricing .section-title {
    font-size: 36px;
    margin-bottom: 12px;
}

.pricing .section-description {
    font-size: 16px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pricing-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px 24px;
    border: 2px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-blue-light);
}

.pricing-card.featured {
    border: 2px solid var(--primary-blue);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
    transform: scale(1.02);
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-4px);
}

.pricing-badge-popular {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 8px rgba(37, 99, 235, 0.3);
    z-index: 1;
}

.pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.pricing-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
}

.pricing-badge {
    padding: 4px 12px;
    background: var(--gray-100);
    color: var(--gray-700);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-card.featured .pricing-badge {
    background: var(--primary-blue-lightest);
    color: var(--primary-blue);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 8px;
}

.price-amount {
    font-size: 36px;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
}

.price-currency {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-600);
}

.price-period {
    font-size: 12px;
    color: var(--gray-500);
    font-weight: 400;
}

.pricing-savings {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 8px;
    padding: 10px;
    background: var(--primary-blue-lightest);
    border-radius: 10px;
}

.savings-text {
    font-size: 12px;
    color: var(--gray-700);
    font-weight: 500;
}

.savings-badge {
    display: inline-block;
    padding: 3px 10px;
    background: var(--success-green);
    color: var(--white);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    width: fit-content;
}

.pricing-vat {
    font-size: 12px;
    color: var(--gray-600);
    margin-bottom: 20px;
    font-weight: 500;
}

.pricing-button {
    width: 100%;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    color: var(--white);
    background: var(--gray-900);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 24px;
}

.pricing-button:hover {
    background: var(--gray-800);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.pricing-button.primary {
    background: var(--gradient-blue);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.pricing-button.primary:hover {
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
    transform: translateY(-2px);
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.pricing-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pricing-features .feature-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    width: 18px;
    height: 18px;
}

.pricing-features .feature-item span {
    font-size: 13px;
    color: var(--gray-700);
    line-height: 1.5;
}

@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .pricing {
        padding: 40px 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 32px;
    }

    .pricing-card {
        padding: 24px 20px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .price-amount {
        font-size: 32px;
    }

    .pricing-title {
        font-size: 20px;
    }
}

.cta-section {
    padding: 100px 0;
    background: var(--gradient-blue);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary-blue);
}

.cta-section .btn-primary:hover {
    background: var(--gray-100);
}

/* Footer */
.footer {
    padding: 80px 0 30px;
    background: linear-gradient(180deg, #1E293B 0%, #0F172A 100%);
    color: var(--gray-300);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(37, 99, 235, 0.3) 50%, transparent 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 2.8fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand {
    position: relative;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-description {
    margin-top: 16px;
    color: var(--gray-400);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--gray-400);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(37, 99, 235, 0.2);
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 16px;
    letter-spacing: 0.3px;
}

.footer-column a {
    display: block;
    color: var(--gray-400);
    text-decoration: none;
    margin-bottom: 14px;
    transition: all 0.3s ease;
    font-size: 14px;
    position: relative;
    padding-left: 0;
}

.footer-column a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.footer-column a:hover {
    color: var(--white);
    padding-left: 12px;
}

.footer-column a:hover::before {
    width: 6px;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 14px;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-bottom-links a {
    color: var(--gray-500);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-blue);
}

.footer-bottom-links span {
    color: var(--gray-600);
    font-size: 12px;
}

/* Use Cases */
.use-cases {
    padding: 100px 0;
    background: var(--white);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.use-case-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.use-case-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.use-case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.use-case-card:hover .use-case-image img {
    transform: scale(1.1);
}

.use-case-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-blue);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.use-case-content {
    padding: 32px;
}

.use-case-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.use-case-content p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
}

.use-case-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.use-case-list li {
    font-size: 15px;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--gray-50);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.testimonial-header {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.testimonial-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--primary-blue-lightest);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.testimonial-role {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 8px;
}

.testimonial-rating {
    color: #FBBF24;
    font-size: 16px;
}

.testimonial-content {
    flex: 1;
}

.testimonial-content p {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.7;
    font-style: italic;
}

.testimonial-stats {
    display: flex;
    gap: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

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

.testimonial-stat-number {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 4px;
}

.testimonial-stat-label {
    font-size: 13px;
    color: var(--gray-600);
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--primary-blue);
    color: var(--white);
    padding: 16px 20px;
    border-radius: 16px;
    box-shadow: var(--shadow-2xl);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 999;
    cursor: pointer;
    transition: all 0.3s ease;
    max-width: 320px;
    animation: slideInUp 0.5s ease;
}

.floating-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.4);
}

.floating-cta-icon {
    flex-shrink: 0;
}

.floating-cta-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}

.floating-cta-subtitle {
    font-size: 12px;
    opacity: 0.9;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

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

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: scale(1.15) rotate(-5deg) translateY(0);
    }
    50% {
        transform: scale(1.15) rotate(-5deg) translateY(-10px);
    }
}

@keyframes rotate {
    from {
        transform: scale(1.15) rotate(10deg);
    }
    to {
        transform: scale(1.15) rotate(370deg);
    }
}

@keyframes shake {
    0%, 100% {
        transform: scale(1.15) rotate(-10deg) translateX(0);
    }
    25% {
        transform: scale(1.15) rotate(-10deg) translateX(-5px);
    }
    75% {
        transform: scale(1.15) rotate(-10deg) translateX(5px);
    }
}

@keyframes floatIcon {
    0%, 100% {
        transform: scale(1.15) rotate(5deg) translateY(0);
    }
    50% {
        transform: scale(1.15) rotate(5deg) translateY(-8px);
    }
}

@keyframes orbitRotate {
    0% {
        transform: translate(-50%, -50%) rotate(var(--orbit-angle, 0deg)) translateX(var(--orbit-radius-x, 260px)) translateY(0) rotate(calc(-1 * var(--orbit-angle, 0deg)));
    }
    12.5% {
        transform: translate(-50%, -50%) rotate(calc(45deg + var(--orbit-angle, 0deg))) translateX(calc(var(--orbit-radius-x, 260px) * 0.707)) translateY(calc(-1 * var(--orbit-radius-y, 200px) * 0.707)) rotate(calc(-45deg - var(--orbit-angle, 0deg)));
    }
    25% {
        transform: translate(-50%, -50%) rotate(calc(90deg + var(--orbit-angle, 0deg))) translateX(0) translateY(calc(-1 * var(--orbit-radius-y, 200px))) rotate(calc(-90deg - var(--orbit-angle, 0deg)));
    }
    37.5% {
        transform: translate(-50%, -50%) rotate(calc(135deg + var(--orbit-angle, 0deg))) translateX(calc(-1 * var(--orbit-radius-x, 260px) * 0.707)) translateY(calc(-1 * var(--orbit-radius-y, 200px) * 0.707)) rotate(calc(-135deg - var(--orbit-angle, 0deg)));
    }
    50% {
        transform: translate(-50%, -50%) rotate(calc(180deg + var(--orbit-angle, 0deg))) translateX(calc(-1 * var(--orbit-radius-x, 260px))) translateY(0) rotate(calc(-180deg - var(--orbit-angle, 0deg)));
    }
    62.5% {
        transform: translate(-50%, -50%) rotate(calc(225deg + var(--orbit-angle, 0deg))) translateX(calc(-1 * var(--orbit-radius-x, 260px) * 0.707)) translateY(calc(var(--orbit-radius-y, 200px) * 0.707)) rotate(calc(-225deg - var(--orbit-angle, 0deg)));
    }
    75% {
        transform: translate(-50%, -50%) rotate(calc(270deg + var(--orbit-angle, 0deg))) translateX(0) translateY(var(--orbit-radius-y, 200px)) rotate(calc(-270deg - var(--orbit-angle, 0deg)));
    }
    87.5% {
        transform: translate(-50%, -50%) rotate(calc(315deg + var(--orbit-angle, 0deg))) translateX(calc(var(--orbit-radius-x, 260px) * 0.707)) translateY(calc(var(--orbit-radius-y, 200px) * 0.707)) rotate(calc(-315deg - var(--orbit-angle, 0deg)));
    }
    100% {
        transform: translate(-50%, -50%) rotate(calc(360deg + var(--orbit-angle, 0deg))) translateX(var(--orbit-radius-x, 260px)) translateY(0) rotate(calc(-360deg - var(--orbit-angle, 0deg)));
    }
}

@keyframes scalePulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        z-index: 1;
    }
    2% {
        transform: scale(1.35) rotate(5deg);
        z-index: 10;
        box-shadow: 0 10px 32px rgba(37, 99, 235, 0.5);
    }
    4% {
        transform: scale(1.35) rotate(-5deg);
        z-index: 10;
        box-shadow: 0 10px 32px rgba(37, 99, 235, 0.5);
    }
    6% {
        transform: scale(1.35) rotate(3deg);
        z-index: 10;
        box-shadow: 0 10px 32px rgba(37, 99, 235, 0.5);
    }
    8% {
        transform: scale(1.35) rotate(-3deg);
        z-index: 10;
        box-shadow: 0 10px 32px rgba(37, 99, 235, 0.5);
    }
    10% {
        transform: scale(1.35) rotate(0deg);
        z-index: 10;
        box-shadow: 0 10px 32px rgba(37, 99, 235, 0.5);
    }
    12% {
        transform: scale(1);
        z-index: 1;
    }
}

@keyframes drawLine {
    from {
        height: 0;
    }
    to {
        height: 180px;
    }
}

@keyframes drawLineHorizontal {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 40px;
        opacity: 1;
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
        opacity: 1;
    }
    50% {
        box-shadow: 0 0 0 15px rgba(37, 99, 235, 0);
        opacity: 0.7;
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
        opacity: 1;
    }
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .what-is-content,
    .feature-item {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .central-hub {
        height: 400px;
    }

    .hub-icon {
        width: 100px;
        height: 100px;
        font-size: 20px;
    }

    .channel-icon .icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .channel-icon svg {
        width: 40px;
        height: 40px;
    }

    .channel-icon span {
        font-size: 11px;
    }

    .channel-icon.whatsapp-icon {
        top: 0;
    }

    .channel-icon.instagram-icon {
        top: 10%;
        right: 0;
    }

    .channel-icon.tiktok-icon {
        bottom: 10%;
        right: 0;
    }

    .channel-icon.telegram-icon {
        bottom: 0;
    }

    .channel-icon.messenger-icon {
        top: 10%;
        left: 0;
    }

    .what-is-features .feature-card {
        flex-direction: column;
        gap: 16px;
        padding-bottom: 24px;
        margin-bottom: 24px;
    }

    .what-is-features .feature-card:hover {
        padding-left: 0;
    }

    .feature-icon-wrapper {
        width: 48px;
        height: 48px;
    }

    .feature-icon-bg {
        width: 40px;
        height: 40px;
    }

    .what-is-features .feature-card h3 {
        font-size: 20px;
    }

    .feature-item.reverse {
        direction: ltr;
    }

    .value-grid,
    .vision-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 42px;
    }

    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .header-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0;
        margin-top: 8px;
        margin-left: 16px;
    }

    .dropdown-item {
        padding: 10px 12px;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 28px;
    }

    .section-description {
        font-size: 16px;
    }

    .features-grid {
        gap: 60px;
    }

    .feature-info {
        padding-left: 0;
        padding-top: 80px;
    }

    .feature-number {
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .feature-info h3 {
        font-size: 24px;
        margin-top: 20px;
    }

    .inbox-diagram-content,
    .ai-conversation-flow {
        height: 400px;
        padding: 20px;
    }

    .inbox-central-screen {
        width: 280px;
        height: 260px;
        top: 12%;
        left: 5%;
    }

    .screen-header {
        padding: 16px 18px;
    }

    .screen-title {
        font-size: 16px;
    }

    .screen-subtitle {
        font-size: 11px;
    }

    .screen-badge {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .screen-messages {
        padding: 16px;
        gap: 12px;
    }

    .message-item {
        padding: 14px;
        gap: 12px;
    }

    .message-avatar {
        width: 42px;
        height: 42px;
    }

    .message-name {
        font-size: 14px;
    }

    .message-text {
        font-size: 12px;
    }

    .message-badge {
        width: 20px;
        height: 20px;
        font-size: 10px;
        top: 10px;
        right: 10px;
    }

    .platform-card-mini {
        padding: 10px 12px;
        min-width: 95px;
        max-width: 115px;
    }

    .inbox-user-avatar {
        width: 42px;
        height: 42px;
    }

    .inbox-user-name {
        font-size: 11px;
    }

    .screen-header {
        padding: 12px 16px;
    }

    .screen-title {
        font-size: 14px;
    }

    .screen-messages {
        padding: 12px;
        gap: 10px;
    }

    .message-item {
        padding: 10px;
    }

    .message-avatar {
        width: 36px;
        height: 36px;
    }

    .message-name {
        font-size: 12px;
    }

    .message-text {
        font-size: 11px;
    }

    .platform-card-mini {
        padding: 10px 12px;
        min-width: 100px;
    }

    .inbox-user-avatar {
        width: 45px;
        height: 45px;
        border-width: 2px;
    }

    .inbox-user-name {
        font-size: 11px;
    }

    .inbox-user-badge {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }

    .platform-card-mini.platform-card-top-1,
    .platform-card-mini.platform-card-top-2 {
        top: 2%;
    }

    .platform-card-mini.platform-card-top-1 {
        left: 30%;
    }

    .platform-card-mini.platform-card-top-2 {
        left: 70%;
    }

    .platform-card-mini.platform-card-right-1,
    .platform-card-mini.platform-card-right-2 {
        right: 1%;
    }

    .platform-card-mini.platform-card-right-1 {
        top: 30%;
    }

    .platform-card-mini.platform-card-right-2 {
        top: 70%;
    }

    .platform-card-mini.platform-card-bottom-1,
    .platform-card-mini.platform-card-bottom-2 {
        bottom: 2%;
    }

    .platform-card-mini.platform-card-bottom-1 {
        left: 30%;
    }

    .platform-card-mini.platform-card-bottom-2 {
        left: 70%;
    }

    .platform-card-mini.platform-card-left-1,
    .platform-card-mini.platform-card-left-2 {
        left: 1%;
    }

    .platform-card-mini.platform-card-left-1 {
        top: 30%;
    }

    .platform-card-mini.platform-card-left-2 {
        top: 70%;
    }

    .ai-central-hub {
        width: 70px;
        height: 70px;
    }

    .chat-conversation {
        gap: 16px;
        padding: 16px;
        max-height: 320px;
    }

    .chat-avatar {
        width: 40px;
        height: 40px;
    }

    .chat-bubble {
        max-width: 75%;
        padding: 12px 16px;
    }

    .bubble-text {
        font-size: 13px;
    }

    .bubble-time {
        font-size: 10px;
    }

    .product-preview img {
        height: 100px;
    }

    .product-info {
        padding: 10px;
    }

    .product-name {
        font-size: 12px;
    }

    .product-price {
        font-size: 14px;
    }

    .ai-link {
        padding: 8px 12px;
        font-size: 12px;
    }

    .appointment-slot {
        padding: 8px 12px;
    }

    .slot-date {
        font-size: 11px;
        min-width: 60px;
    }

    .slot-time {
        font-size: 12px;
        padding: 3px 8px;
    }

    .search-result-item {
        padding: 8px 12px;
    }

    .result-text {
        font-size: 12px;
    }

    .bot-builder {
        padding: 30px 15px;
        min-height: 450px;
    }

    .bot-flow-container {
        min-height: 400px;
        padding: 15px 0;
    }

    .bot-node {
        min-width: 220px;
        max-width: 260px;
        padding: 16px 20px;
        gap: 12px;
    }

    .bot-node-icon {
        width: 36px;
        height: 36px;
    }

    .bot-node-icon svg {
        width: 20px;
        height: 20px;
    }

    .bot-node-title {
        font-size: 14px;
    }

    .bot-node-desc {
        font-size: 11px;
    }

    .yes-node,
    .no-node {
        min-width: 90px;
        max-width: 110px;
        padding: 10px 14px;
    }

    .yes-icon,
    .no-icon {
        width: 24px;
        height: 24px;
    }

    .yes-icon svg,
    .no-icon svg {
        width: 12px;
        height: 12px;
    }

    .yes-node .bot-node-title,
    .no-node .bot-node-title {
        font-size: 13px;
    }

    .bot-branches-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        max-width: 100%;
    }

    .bot-branch-left,
    .bot-branch-right {
        width: 100%;
        align-items: center !important;
    }

    .bot-connection-arrow {
        margin: 6px 0;
    }

    .bot-connection-arrow svg {
        width: 16px;
        height: 32px;
    }

    .pipeline-diagram {
        padding: 30px 20px;
    }

    .pipeline-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 100%;
        padding: 10px 0;
    }

    .pipeline-column {
        align-items: center;
        gap: 16px;
    }

    .pipeline-column.hub-column {
        order: 1;
        min-height: auto;
        padding: 20px 0;
    }

    .pipeline-column.stages-column {
        order: 2;
    }

    .pipeline-column.functions-column {
        order: 3;
    }

    .pipeline-node {
        max-width: 100%;
        min-width: auto;
    }

    .pipeline-node.stage-node,
    .pipeline-node.function-node {
        max-width: 100%;
        min-width: 100%;
    }

    .node-pulse {
        display: none;
    }

    .stage-mini-card {
        min-width: 200px;
    }

    .function-card {
        min-width: 200px;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .footer-social {
        justify-content: center;
    }

    .floating-cta {
        bottom: 16px;
        right: 16px;
        left: 16px;
        max-width: none;
    }

    .roadmap-timeline {
        padding-left: 24px;
    }

    .roadmap-timeline::before {
        left: 12px;
    }

    .timeline-dot {
        left: -20px;
        width: 20px;
        height: 20px;
    }

    .pipeline-preview {
        display: none;
    }
    
    .dashboard-mockup {
        overflow: hidden;
    }

    .mockup-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .dashboard-mockup {
        transform: none;
    }

    .tasks-header {
        font-size: 16px;
        margin-bottom: 16px;
        padding-bottom: 12px;
    }

    .tasks-header-icon {
        width: 28px;
        height: 28px;
    }

    .task-item {
        padding: 14px;
        gap: 12px;
    }

    .task-title-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 8px;
    }

    .task-title {
        font-size: 14px;
    }

    .task-priority,
    .task-status-badge {
        font-size: 10px;
        padding: 3px 8px;
    }

    .task-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .task-time {
        font-size: 11px;
    }

    .assignee-avatar {
        width: 24px;
        height: 24px;
    }

    .templates-header {
        font-size: 16px;
        margin-bottom: 16px;
        padding-bottom: 12px;
    }

    .templates-header-icon {
        width: 28px;
        height: 28px;
    }

    .templates-grid {
        gap: 12px;
    }

    .template-item {
        padding: 14px;
        gap: 10px;
    }

    .template-icon-wrapper {
        width: 40px;
        height: 40px;
    }

    .template-icon-wrapper svg {
        width: 20px;
        height: 20px;
    }

    .template-title {
        font-size: 14px;
    }

    .template-desc {
        font-size: 11px;
    }

    .template-badge {
        top: 10px;
        right: 10px;
        padding: 3px 8px;
        font-size: 9px;
    }

    .profile-header {
        font-size: 16px;
        margin-bottom: 16px;
        padding-bottom: 12px;
    }

    .profile-header-icon {
        width: 28px;
        height: 28px;
    }

    .profile-avatar {
        width: 80px;
        height: 80px;
    }

    .profile-status {
        width: 16px;
        height: 16px;
        bottom: 2px;
        right: 2px;
        border-width: 2px;
    }

    .profile-name {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .profile-tabs {
        gap: 6px;
    }

    .profile-tab {
        padding: 8px 14px;
        font-size: 12px;
        gap: 5px;
    }

    .profile-tab svg {
        width: 14px;
        height: 14px;
    }

    .integrations-header {
        font-size: 16px;
        margin-bottom: 16px;
        padding-bottom: 12px;
    }

    .integrations-header-icon {
        width: 28px;
        height: 28px;
    }

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

    .integration-item {
        padding: 14px 12px;
        gap: 8px;
    }

    .integration-badge {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }

    .integration-title {
        font-size: 12px;
    }

    .value-card,
    .vision-card {
        padding: 32px 24px;
    }

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

