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

/* Performance optimizations */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    /* Account for fixed navbar */
}

/* Smooth scrolling optimizations */
* {
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
}

body {
    overflow-x: hidden;
    /* Prevent horizontal scroll */
}

/* Smooth scroll for all browsers */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: #f8f9ff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 25%, #c084fc 50%, #e879f9 75%, #f0abfc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 25%, #c084fc 75%, #e879f9 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    font-size: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
}

/* Removed shimmer effect for better performance */

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.4);
    background: linear-gradient(135deg, #8b5cf6 0%, #c084fc 25%, #e879f9 75%, #f0abfc 100%);
}

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

.btn-secondary {
    background: transparent;
    color: #8b5cf6;
    border: 2px solid #e5e7eb;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 15px;
}

.btn-secondary:hover {
    background: #f9fafb;
    border-color: #8b5cf6;
    transform: translateY(-2px);
}

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

.btn-outline {
    background: transparent;
    color: #333;
    border: 2px solid #e1e5e9;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-outline:hover {
    border-color: #667eea;
    color: #667eea;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 20px;
    color: #333;
}

.nav-logo i {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 24px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #7c3aed;
}

/* Hero Section */
.hero {
    padding: 120px 0 100px;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 25%, #e8ebff 50%, #e0e7ff 75%, #ddd6fe 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(124, 58, 237, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(168, 85, 247, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2d3748;
}

.hero-content p {
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 480px;
}

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

/* Chat Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    position: relative;
}

.hero-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

.chat-mockup {
    background: white;
    border-radius: 24px;
    box-shadow:
        0 25px 80px rgba(139, 92, 246, 0.25),
        0 10px 30px rgba(139, 92, 246, 0.15),
        0 0 0 1px rgba(139, 92, 246, 0.08);
    width: 100%;
    max-width: 480px;
    height: 600px;
    overflow: hidden;
    will-change: transform;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    transform: rotateY(-8deg) rotateX(2deg) translateZ(0);
    position: relative;
    z-index: 1;
    /* Removed animation for better performance */
}

.chat-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 24px;
    z-index: 1;
    pointer-events: none;
}


.chat-header {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 25%, #c084fc 75%, #e879f9 100%);
    padding: 22px 28px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
}

.chat-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
}

.chat-status {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 16px;
}

.status-dot {
    width: 12px;
    height: 12px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(0.95);
    }
}

/* Removed float animation for better performance */

.chat-messages {
    padding: 28px;
    flex: 1;
    overflow-y: auto;
    background: linear-gradient(180deg, #fafbff 0%, #f8faff 100%);
    position: relative;
    scroll-behavior: smooth;
    z-index: 2;
}

.chat-messages::-webkit-scrollbar {
    display: none;
}

.chat-messages {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.chat-messages::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(to bottom, rgba(250, 251, 255, 0), rgba(250, 251, 255, 1));
    pointer-events: none;
    z-index: 1;
}

.message {
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.message.visible {
    opacity: 1;
    transform: translateY(0);
}

.message.user {
    justify-content: flex-end;
}

.message.user .message-content {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 25%, #c084fc 75%, #e879f9 100%);
    color: white;
    padding: 16px 20px;
    border-radius: 22px 22px 8px 22px;
    max-width: 75%;
    font-size: 15px;
    line-height: 1.5;
    box-shadow:
        0 6px 20px rgba(124, 58, 237, 0.3),
        0 3px 8px rgba(124, 58, 237, 0.2);
    font-weight: 500;
    position: relative;
}

.message.user .message-content::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%);
    border-radius: 22px 22px 8px 22px;
    pointer-events: none;
}

.message.ai {
    align-items: flex-start;
}

.message.ai .message-content {
    background: white;
    color: #374151;
    padding: 16px 20px;
    border-radius: 22px 22px 22px 8px;
    max-width: 85%;
    font-size: 15px;
    line-height: 1.6;
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.08),
        0 2px 4px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(139, 92, 246, 0.08);
    backdrop-filter: blur(10px);
    position: relative;
}

.message.ai .message-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.02) 0%, transparent 100%);
    border-radius: 22px 22px 22px 8px;
    pointer-events: none;
}

.message-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 25%, #c084fc 75%, #e879f9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    box-shadow:
        0 6px 20px rgba(124, 58, 237, 0.4),
        0 3px 8px rgba(124, 58, 237, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
}

.message-avatar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    border-radius: 50%;
    pointer-events: none;
}

/* Typing Indicator */
.typing-indicator {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.typing-indicator.visible {
    opacity: 1;
    transform: translateY(0);
}

.typing-dots {
    background: white;
    padding: 16px 20px;
    border-radius: 22px 22px 22px 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #f3f4f6;
    display: flex;
    gap: 6px;
    align-items: center;
    min-height: 54px;
}

.typing-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    animation: typingAnimation 1.4s infinite ease-in-out;
}

.typing-dots span:nth-child(1) {
    animation-delay: -0.32s;
}

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

@keyframes typingAnimation {

    0%,
    80%,
    100% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    40% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* Stats Section - Clean and Simple */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 25%, #c084fc 50%, #e879f9 75%, #f0abfc 100%);
    position: relative;
}

.stats .container {
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    padding: 0;
    transition: transform 0.3s ease;
    will-change: transform;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 5rem;
    font-weight: 200;
    color: white;
    margin-bottom: 12px;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-label {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.95;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #333;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: linear-gradient(135deg, #fafbff 0%, #f3f4ff 50%, #eef2ff 100%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(124, 58, 237, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(168, 85, 247, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    will-change: transform;
    position: relative;
    overflow: hidden;
}



.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 25%, #c084fc 75%, #e879f9 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    font-size: 28px;
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
    position: relative;
    z-index: 1;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    border-radius: 16px;
    pointer-events: none;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Dashboard Preview */
.dashboard-preview {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #fafbff 50%, #f3f4ff 100%);
    position: relative;
}

.dashboard-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(168, 85, 247, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

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

.preview-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #333;
}

.preview-text p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: #333;
}

.feature-list i {
    color: #4ade80;
    font-size: 16px;
}

.dashboard-mockup {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 600px;
}

.dashboard-header {
    background: #f8f9fa;
    border-bottom: 1px solid #e1e5e9;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-nav {
    display: flex;
    gap: 20px;
}

.nav-item {
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
    font-size: 14px;
}

.nav-item.active {
    background: #8b5cf6;
    color: white;
}

.dashboard-actions {
    display: flex;
    align-items: center;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #666;
}

.status-dot.active {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.dashboard-content {
    padding: 24px;
}

.metric-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.metric-card {
    background: #f8f9fa;
    padding: 16px;
    border-radius: 12px;
    text-align: left;
    border: 1px solid #e5e7eb;
}

.metric-icon {
    font-size: 20px;
    margin-bottom: 8px;
}

.metric-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 4px;
    line-height: 1;
}

.metric-label {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 4px;
}

.metric-change {
    font-size: 0.75rem;
    font-weight: 500;
}

.metric-change.positive {
    color: #10b981;
}

.metric-change.neutral {
    color: #6b7280;
}

.dashboard-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.chart-section,
.recent-conversations {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 16px;
    border: 1px solid #e5e7eb;
}

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

.section-header h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    margin: 0;
}

.time-filter {
    display: flex;
    gap: 8px;
}

.filter-item {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    cursor: pointer;
    color: #6b7280;
    transition: all 0.2s ease;
}

.filter-item.active {
    background: #8b5cf6;
    color: white;
}

.view-all {
    font-size: 0.75rem;
    color: #8b5cf6;
    text-decoration: none;
}

.chart-area {
    height: 120px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: end;
    justify-content: center;
    padding: 16px;
    border: 1px solid #e5e7eb;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 8px;
    height: 100%;
    width: 100%;
    justify-content: space-around;
}

.chart-bar {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    border-radius: 2px;
    width: 12px;
    min-height: 8px;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.chart-bar:hover {
    opacity: 1;
}

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

.conversation-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.conversation-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.conversation-details {
    flex: 1;
    min-width: 0;
}

.conversation-question {
    font-size: 0.8rem;
    color: #374151;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.conversation-status {
    font-size: 0.7rem;
    font-weight: 500;
}

.conversation-status.resolved {
    color: #10b981;
}

.conversation-status.active {
    color: #f59e0b;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: linear-gradient(135deg, #fafbff 0%, #f3f4ff 50%, #eef2ff 100%);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(124, 58, 237, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(168, 85, 247, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.2s ease;
    will-change: transform;
}

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

.pricing-card.featured {
    border: 2px solid #7c3aed;
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 25%, #c084fc 75%, #e879f9 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #333;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.currency {
    font-size: 1.5rem;
    color: #666;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
}

.period {
    color: #666;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #333;
}

.pricing-features i {
    color: #4ade80;
    font-size: 16px;
}

/* Section Badge */
.section-badge {
    display: inline-block;
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

/* Automation Section */
.automation {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8ebff 100%);
}

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

.automation-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #2d3748;
}

.automation-text p {
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 32px;
    line-height: 1.6;
}

.workflow-mockup {
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.08);
    max-width: 400px;
    margin: 0 auto;
}

.workflow-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f3f4f6;
}

.workflow-title {
    font-weight: 600;
    color: #374151;
    font-size: 0.95rem;
}

.workflow-trigger {
    background: #8b5cf6;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.workflow-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.workflow-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    position: relative;
}

.step-icon {
    width: 36px;
    height: 36px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    border: 1px solid #e5e7eb;
}

.step-content {
    flex: 1;
}

.step-title {
    font-weight: 500;
    color: #374151;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.step-subtitle {
    color: #6b7280;
    font-size: 0.8rem;
}

.step-status {
    background: #10b981;
    color: white;
    padding: 2px 8px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 500;
}

.workflow-connector {
    width: 2px;
    height: 16px;
    background: #e5e7eb;
    margin-left: 18px;
    margin-top: -8px;
    margin-bottom: -8px;
}

/* Analytics Section */
.analytics {
    padding: 100px 0;
    background: white;
}

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

.analytics-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #2d3748;
}

.analytics-text p {
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 32px;
    line-height: 1.6;
}

.analytics-mockup {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8ebff 100%);
    border-radius: 20px;
    padding: 32px;
    max-width: 450px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

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

.analytics-badge {
    font-size: 0.8rem;
    color: #8b5cf6;
    font-weight: 600;
}

.efficiency-stat {
    text-align: right;
}

.stat-label {
    font-size: 0.8rem;
    color: white;
    margin-bottom: 4px;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
}

.analytics-charts {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    align-items: flex-end;
}

.chart-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    width: 80px;
}

.chart-item {
    width: 16px;
    height: 16px;
    border-radius: 3px;
}

.chart-item.purple {
    background: #8b5cf6;
}

.chart-item.light {
    background: #e5e7eb;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 80px;
}

.bar {
    width: 12px;
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    border-radius: 2px;
    min-height: 8px;
}

.analytics-graph {
    position: relative;
    height: 60px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    overflow: hidden;
}

.graph-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #8b5cf6, #a855f7, #8b5cf6);
    transform: translateY(-50%);
}

.graph-point {
    position: absolute;
    top: 50%;
    right: 20%;
    width: 8px;
    height: 8px;
    background: #f59e0b;
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.3);
}

/* Integrations Section */
.integrations {
    padding: 100px 0;
    background: #fafafa;
}

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

.integrations-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #2d3748;
}

.integrations-text p {
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 32px;
    line-height: 1.6;
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 400px;
    margin: 0 auto;
}

.integration-item {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f3f4f6;
    cursor: pointer;
}

.integration-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.2);
}

.integration-icon {
    font-size: 28px;
}

.integration-item:nth-child(1) {
    animation-delay: 0.1s;
}

.integration-item:nth-child(2) {
    animation-delay: 0.2s;
}

.integration-item:nth-child(3) {
    animation-delay: 0.3s;
}

.integration-item:nth-child(4) {
    animation-delay: 0.4s;
}

.integration-item:nth-child(5) {
    animation-delay: 0.5s;
}

.integration-item:nth-child(6) {
    animation-delay: 0.6s;
}

.integration-item:nth-child(7) {
    animation-delay: 0.7s;
}

.integration-item:nth-child(8) {
    animation-delay: 0.8s;
}

.integration-item:nth-child(9) {
    animation-delay: 0.9s;
}

.integration-item:nth-child(10) {
    animation-delay: 1.0s;
}

.integration-item:nth-child(11) {
    animation-delay: 1.1s;
}

.integration-item:nth-child(12) {
    animation-delay: 1.2s;
}

/* CTA Section with Form */
.cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 25%, #c084fc 50%, #e879f9 75%, #f0abfc 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.cta-content .gradient-text {
    color: white;
    background: none;
    -webkit-text-fill-color: white;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 50px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Demo Form Styles */
.demo-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
    position: relative;
    z-index: 2;
}

/* Demo Form Container Styles */


.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.form-header p {
    color: #6b7280;
    font-size: 16px;
}

.demo-form {
    max-width: 600px;
    margin: 0 auto;
}

.demo-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.demo-form .form-group {
    position: relative;
}

.demo-form .form-group.full-width {
    grid-column: 1 / -1;
}

.demo-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #374151;
}

.demo-form input,
.demo-form select,
.demo-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s ease;
    background: white;
    color: #374151;

}

.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
    outline: none;
    border-color: #8b5cf6;
}

.demo-form textarea {
    resize: vertical;
    min-height: 100px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.form-actions {
    text-align: center;
    margin-top: 30px;
}

.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 14px;
    color: #6b7280;
}

.form-note i {
    color: #10b981;
}

/* Next Steps Section in Success Message */
.next-steps {
    background: rgba(16, 185, 129, 0.1);
    padding: 25px;
    border-radius: 12px;
    margin-top: 30px;
    text-align: left;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.next-steps h4 {
    color: #065f46;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
}

.next-steps ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.next-steps li {
    padding: 10px 0;
    font-size: 1.1rem;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 10px;
}

.next-steps li:before {
    content: '';
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    flex-shrink: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.demo-form input,
.demo-form select,
.demo-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.demo-form input::placeholder,
.demo-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.demo-form select {
    cursor: pointer;
    color: rgba(255, 255, 255, 0.9);
}

.demo-form select option {
    background: #7c3aed;
    color: white;
}

.demo-form textarea {
    resize: vertical;
    min-height: 100px;
}

.demo-submit {
    width: 100%;
    margin: 30px 0 20px 0;
    background: white;
    color: #7c3aed;
    position: relative;
    overflow: hidden;
}

.demo-submit:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
}

.demo-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.form-note {
    font-size: 0.9rem;
    opacity: 0.8;
    text-align: center;
    margin-top: 10px;
}

/* Success Message */
.form-success {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
    color: white;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.form-success h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1f2937;
    font-weight: 700;
}

.form-success p {
    font-size: 1.2rem;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Error Message */
.form-error {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(255, 100, 100, 0.3);
}

.error-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 100, 100, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    color: #ff6b6b;
}

.form-error h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: white;
}

.form-error p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 20px;
}

.form-error a {
    color: #a855f7;
    text-decoration: none;
}

.form-error a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 16px;
}

.footer-logo i {
    color: #667eea;
    font-size: 24px;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

.footer-section h4 {
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section ul li a:hover {
    color: #667eea;
}

.footer-section ul li a i {
    font-size: 14px;
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ccc;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #667eea;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .preview-content,
    .automation-content,
    .analytics-content,
    .integrations-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .automation-text,
    .analytics-text,
    .integrations-text {
        order: 2;
    }

    .automation-visual,
    .analytics-visual,
    .integrations-visual {
        order: 1;
    }

    .nav-menu {
        display: none;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

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

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

    .section-header h2,
    .automation-text h2,
    .analytics-text h2,
    .integrations-text h2 {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .integrations-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 300px;
    }

    .integration-item {
        width: 70px;
        height: 70px;
    }

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

    .workflow-mockup,
    .analytics-mockup {
        max-width: 100%;
    }

    .analytics-content .analytics-visual {
        order: 1;
    }

    .analytics-content .analytics-text {
        order: 2;
    }
}

/* Removed heavy animations for better scroll performance */

/* Make stats section more responsive */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }
}

/* CTA Alternative Section */
.cta-alternative {
    margin-top: 30px;
    opacity: 0.9;
}

.cta-alternative p {
    font-size: 1rem;
    margin: 0;
}

.text-link {
    color: white;
    text-decoration: underline;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.text-link:hover {
    opacity: 0.8;
    text-decoration: none;
}



/* Responsive Styles for Demo Form */
@media (max-width: 768px) {
    .demo-form-container {
        padding: 24px;
        margin: 24px 0;
    }

    .demo-form .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .form-header h3 {
        font-size: 20px;
    }

    .form-header p {
        font-size: 14px;
    }
}/* Enha
nced pricing plan styling */
.plan-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-description {
    color: #666;
    font-size: 0.95rem;
    margin: 10px 0 20px 0;
    text-align: center;
    font-style: italic;
}

.pricing-card {
    position: relative;
    padding: 30px 25px;
    border-radius: 12px;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 3px solid #667eea;
    transform: scale(1.05);
}

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

.plan-savings {
    background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
    color: #2d5a2d;
    padding: 15px;
    margin-top: 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 0.95rem;
    border-left: 4px solid #28a745;
}

.pricing-features li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: #28a745;
    margin-right: 10px;
}