:root {
    --primary-color: rgb(12, 179, 138);
    --primary-dark: rgb(10, 150, 115);
    --primary-light: rgba(12, 179, 138, 0.1);
    --primary-medium: rgba(12, 179, 138, 0.2);
    --bg-dark: #0B0D17;
    --bg-secondary: #151829;
    --bg-card: #1E2139;
    --bg-glass: rgba(30, 33, 57, 0.8);
    --text-primary: #FFFFFF;
    --text-secondary: #A0A3BD;
    --text-muted: #6B7280;
    --border-color: #2D3748;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    --gradient-hero: linear-gradient(135deg, #0B0D17 0%, #151829 50%, #1E2139 100%);
    --gradient-card: linear-gradient(145deg, rgba(30, 33, 57, 0.9), rgba(21, 24, 41, 0.9));
    --shadow-primary: 0 20px 40px rgba(12, 179, 138, 0.15);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--gradient-hero);
}

.animated-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(12, 179, 138, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(10, 150, 115, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(12, 179, 138, 0.05) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(1deg); }
    66% { transform: translateY(10px) rotate(-1deg); }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(11, 13, 23, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo i {
    font-size: 2rem;
}

.login .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}



.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

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

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.logo:hover {
    color: var(--primary-color);
}

.cta-button {
    background: var(--gradient-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-primary);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 50px rgba(12, 179, 138, 0.25);
}

/* Hide mobile Sign In button on desktop */
.nav-menu .cta-button {
    display: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: var(--primary-color);
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--text-primary), var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content .highlight {
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 50px rgba(12, 179, 138, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    padding: 1rem 2rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    background: var(--primary-light);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease-out 0.3s both;
}

.dashboard-preview {
    background: var(--gradient-card);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.dashboard-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.chat-preview {
    background: var(--bg-dark);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

.chat-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.chat-info h4 {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

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

.chat-message {
    background: var(--bg-secondary);
    padding: 1rem 1.5rem;
    border-radius: 18px 18px 18px 4px;
    margin-bottom: 1rem;
    color: var(--text-primary);
    max-width: 80%;
    animation: slideInLeft 0.5s ease-out;
}

.chat-message.bot {
    background: var(--gradient-primary);
    border-radius: 18px 18px 4px 18px;
    margin-left: auto;
    animation: slideInRight 0.5s ease-out;
}

.typing-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.typing-dots {
    display: flex;
    gap: 0.25rem;
}

.typing-dots span {
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

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

@keyframes typing {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-10px); }
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.metric-card {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.metric-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

/* Features Section */
.features {
    padding: 8rem 0;
    position: relative;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-light);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: var(--gradient-card);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

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

/* AI Capabilities Section */
.ai-capabilities {
    padding: 8rem 0;
    background: var(--bg-secondary);
    position: relative;
}

.capabilities-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.ai-visual {
    position: relative;
}

.ai-brain {
    width: 400px;
    height: 400px;
    background: var(--gradient-primary);
    border-radius: 50%;
    position: relative;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 100px rgba(12, 179, 138, 0.3);
    animation: pulse 3s ease-in-out infinite;
}

.ai-brain i {
    font-size: 6rem;
    color: white;
}

.ai-nodes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.ai-node {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--bg-card);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    animation: float 4s ease-in-out infinite;
}

.ai-node:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; }
.ai-node:nth-child(2) { top: 20%; right: 10%; animation-delay: 1s; }
.ai-node:nth-child(3) { bottom: 20%; left: 10%; animation-delay: 2s; }
.ai-node:nth-child(4) { bottom: 10%; right: 20%; animation-delay: 3s; }

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

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

.capability-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--gradient-card);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.capability-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-card);
}

.capability-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.capability-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.capability-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Integrations Section */
.integrations {
    padding: 8rem 0;
    position: relative;
}

.integrations-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.integrations-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    margin-bottom: 5rem;
}

.integration-info h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.integration-info p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.integration-benefits {
    list-style: none;
}

.integration-benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--gradient-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.integration-benefit:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-card);
}

.integration-benefit i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.integration-benefit span {
    color: var(--text-primary);
    font-weight: 500;
}

.integration-visual {
    position: relative;
}

.integration-flow {
    background: var(--gradient-card);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.integration-flow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.flow-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--bg-dark);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    position: relative;
}

.flow-step:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 24px;
    background: var(--primary-color);
}

.flow-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.flow-content h4 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

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

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.integration-card {
    background: var(--gradient-card);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.integration-logo {
    width: 80px;
    height: 80px;
    background: var(--bg-dark);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    padding: 1rem;
}

.platform-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0.8);
    transition: all 0.3s ease;
}

.integration-card:hover .platform-logo {
    filter: brightness(1);
    transform: scale(1.1);
}

.integration-card:hover .integration-logo {
    border-color: var(--primary-color);
    background: var(--primary-light);
}

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

/* Platform specific colors for logos */
.shopify-logo {
    background: linear-gradient(135deg, #96bf47, #7ba83a);
}
.youcan-logo {
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
}
.lightfunnel-logo {
    background: var(--gradient-primary);
}
.woocommerce-logo {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
}

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

.integration-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card);
}

.integration-logo {
    width: 80px;
    height: 80px;
    background: var(--bg-dark);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.integration-card:hover .integration-logo {
    border-color: var(--primary-color);
    background: var(--primary-light);
}

.integration-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.integration-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.integration-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-light);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.integration-status i {
    font-size: 0.8rem;
}

/* Platform specific colors for logos */
.shopify-logo { color: #96bf47; }
.youcan-logo { color: #ff6b35; }
.lightfunnel-logo { color: var(--primary-color); }
.weecommerce-logo { color: #8b5cf6; }

/* Pricing Section */
.pricing {
    padding: 8rem 0;
    background: var(--bg-secondary);
    position: relative;
}

.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.toggle-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
    background: var(--bg-dark);
    border-radius: 50px;
    border: 2px solid var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-switch.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.toggle-slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 22px;
    height: 22px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-switch.active .toggle-slider {
    transform: translateX(30px);
}

.annual-badge {
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--gradient-card);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: left;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card);
}

.pricing-card.popular {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

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

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.pricing-header p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.pricing-price {
    margin-bottom: 2rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.price-currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.price-period {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.price-original {
    font-size: 1.2rem;
    color: var(--text-secondary);
    text-decoration: line-through;
    margin-left: 0.5rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.pricing-feature i {
    color: var(--primary-color);
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

.pricing-feature span {
    color: var(--text-primary);
    font-weight: 500;
}

.pricing-cta {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.pricing-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(12, 179, 138, 0.3);
}

.pricing-card:not(.popular) .pricing-cta {
    background: var(--bg-dark);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.pricing-card:not(.popular) .pricing-cta:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(12, 179, 138, 0.1);
}
.lightfunnel-logo { color: var(--primary-color); }
.weecommerce-logo { color: #8b5cf6; }

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

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-primary);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.feature-link:hover {
    gap: 1rem;
}

/* AI Capabilities Section */
.ai-capabilities {
    padding: 8rem 0;
    background: var(--bg-secondary);
    position: relative;
}

.capabilities-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.ai-visual {
    position: relative;
}

.ai-brain {
    width: 400px;
    height: 400px;
    background: var(--gradient-primary);
    border-radius: 50%;
    position: relative;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 100px rgba(12, 179, 138, 0.3);
    animation: pulse 3s ease-in-out infinite;
}

.ai-brain i {
    font-size: 6rem;
    color: white;
}

.ai-nodes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.ai-node {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--bg-card);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    animation: float 4s ease-in-out infinite;
}

.ai-node:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; }
.ai-node:nth-child(2) { top: 20%; right: 10%; animation-delay: 1s; }
.ai-node:nth-child(3) { bottom: 20%; left: 10%; animation-delay: 2s; }
.ai-node:nth-child(4) { bottom: 10%; right: 20%; animation-delay: 3s; }

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

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

.capability-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--gradient-card);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.capability-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-card);
}

.capability-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.capability-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.capability-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: white;
    color: var(--primary-color);
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.2);
}

.btn-outline {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
}

/* Tablet Responsive Design */
@media (max-width: 768px) {
    .integrations-grid {
        grid-template-columns: 1fr;
    }

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

    .pricing-card.popular {
        transform: none;
    }

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

    .ai-brain {
        width: 250px;
        height: 250px;
    }
}

/* Footer */
.footer {
    background: var(--bg-dark);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 3fr 1.5fr 1.5fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

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

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-muted);
}

.footer-legal-links {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.footer-legal-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-legal-links span {
    margin: 0 0.5rem;
    color: var(--text-muted);
}

/* Animations */
@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 slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container,
    .capabilities-grid,
    .integrations-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

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

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

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

    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .ai-brain {
        width: 300px;
        height: 300px;
    }

    .ai-brain i {
        font-size: 4rem;
    }

    .integration-info {
        order: 2;
    }

    .integration-visual {
        order: 1;
    }
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .pricing-card h3 {
        font-size: 1.2rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    /* Remove the old nav-menu display: none since we're handling it differently now */

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

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

    .hero-stats {
        justify-content: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .integration-info h2 {
        font-size: 2rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

    .ai-brain {
        width: 250px;
        height: 250px;
    }

    .ai-brain i {
        font-size: 3rem;
    }

    .ai-node {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .integration-flow {
        padding: 1.5rem;
    }

    .flow-step {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .flow-step:not(:last-child)::after {
        left: 50%;
        transform: translateX(-50%);
    }

    /* Additional Mobile Improvements */
    .hero {
        padding: 8rem 0 4rem;
    }

    .hero-container {
        padding: 0 1rem;
    }

    .section-header {
        padding: 0 1rem;
        margin-bottom: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .capabilities-container,
    .features-container,
    .integrations-container {
        padding: 0 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .ai-brain-svg {
        width: 300px;
        height: 300px;
    }

    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

    .integration-card {
        padding: 1.5rem;
    }
}

/* SVG Brain Styles */
.ai-brain-svg {
    width: 400px;
    height: 400px;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 0 50px rgba(12, 179, 138, 0.3));
}

/* Desktop Footer Sections Row - should display as normal grid items */
.footer-sections-row {
    display: contents; /* This makes the container invisible on desktop, children behave as direct grid items */
    gap: 4rem; /* Ensure proper spacing between Company and Support sections */
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

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

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

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

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(11, 13, 23, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        font-size: 1.2rem;
        padding: 1rem;
        border-bottom: 1px solid var(--border-color);
        width: 80%;
        text-align: center;
    }

    /* Hide desktop CTA button on mobile */
    .nav-container > .cta-button {
        display: none;
    }

    /* Style CTA button inside mobile menu */
    .nav-menu .cta-button {
        display: inline-block;
        background: var(--gradient-primary);
        color: white;
        padding: 0.75rem 2rem;
        border-radius: 25px;
        text-decoration: none;
        font-weight: 600;
        margin-top: 1rem;
        border: none;
        width: auto;
        transition: all 0.3s ease;
    }

    .nav-menu .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-primary);
    }

    .nav-container {
        padding: 1rem;
    }

    /* Pricing Grid - Mobile Responsive */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1rem;
    }

    .pricing-card.popular {
        order: -1;
        margin-bottom: 2rem;
    }

    /* Footer - Reduce Spacing */
    .footer {
        padding: 2rem 0 1rem;
    }

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

    .footer-brand {
        text-align: center;
        margin-bottom: 1rem;
    }

    /* Company and Support sections in single row on mobile */
    .footer-sections-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        margin-top: 1rem;
    }

    .footer-section {
        text-align: left;
    }

    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

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

    .footer-bottom {
        padding-top: 1rem;
    }
}

/* Video Modal Styles */
.video-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.video-modal-content {
    position: relative;
    margin: 2% auto;
    width: 95%;
    max-width: 1200px;
    height: 90vh;
    max-height: 800px;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease;
}

.video-modal-close:hover {
    color: var(--primary-color);
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-container video {
    border-radius: 15px;
    object-fit: contain;
    background-color: #000;
}

.video-container video::-webkit-media-controls-panel {
    background-color: rgba(0, 0, 0, 0.8);
}

.video-container iframe {
    border-radius: 15px;
}

/* Mobile responsive for video modal */
@media (max-width: 768px) {
    .video-modal-content {
        width: 98%;
        height: 85vh;
        margin: 5% auto;
    }

    .video-modal-close {
        top: -35px;
        font-size: 30px;
    }
}

/* Pricing Page Specific Styles */

/* Pricing Hero Section */
.pricing-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.pricing-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.pricing-hero .section-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero CTA Buttons */
.hero-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0 3rem;
}

.hero-cta-buttons .btn-primary,
.hero-cta-buttons .btn-secondary {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.hero-cta-buttons .btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
}

.hero-cta-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(20, 184, 166, 0.4);
}

.hero-cta-buttons .btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Responsive Hero CTA Buttons */
@media (max-width: 768px) {
    .hero-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        margin: 1.5rem 0 2rem;
    }

    .hero-cta-buttons .btn-primary,
    .hero-cta-buttons .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 1rem 2rem;
    }
}

/* Updated Pricing Card Styles - Wider Cards & Better Price Display */
/* Updated Pricing Card Styles - Much Wider Cards (25% more space like egrow) */
.pricing-container {
    max-width: 1600px; /* Increased significantly from 1400px */
    margin: 0 auto;
    padding: 0 0.5rem; /* Reduced padding even more for maximum space */
}

.pricing-card {
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 3rem 2.5rem; /* Increased vertical padding, good horizontal padding */
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: fit-content;
    min-width: 320px; /* Ensure minimum width */
    text-align: left; /* Ensure left alignment for pricing page */
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(20, 184, 166, 0.3);
}

/* Plan Category */
.plan-category {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

/* Pricing Header */
.pricing-header h3 {
    font-size: 1.25rem; /* Much smaller like Egrow */
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 1rem 0;
}

/* Fixed Price Display - Price and /month on same line */
.pricing-price {
    margin-bottom: 1.5rem;
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.price-currency {
    font-size: 1rem; /* Much smaller */
    font-weight: 600;
    color: var(--text-primary);
}

.price-number {
    font-size: 2.25rem; /* Much smaller like Egrow */
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.price-period {
    font-size: 0.9rem; /* Smaller */
    color: var(--text-secondary);
    font-weight: 500;
}

/* CTA Button at Top */
.pricing-cta-top {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem; /* Smaller padding */
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 8px; /* Smaller radius */
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem; /* Smaller margin */
    font-size: 0.9rem; /* Smaller font size */
}

.pricing-cta-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3); /* Smaller shadow */
}

.pricing-cta-top.enterprise {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.pricing-cta-top.enterprise:hover {
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

/* Popular Card Styling */
.pricing-card.popular {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(20, 184, 166, 0.05) 100%);
    transform: scale(1.02); /* Slightly larger */
}

.pricing-card.popular:hover {
    border-color: var(--primary-color);
    box-shadow: 0 25px 50px rgba(20, 184, 166, 0.25);
    transform: scale(1.02) translateY(-4px);
}

/* Better Recommended Badge */
.pricing-badge {
    position: absolute;
    top: -1px;
    right: -1px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0d9488 100%);
    color: white;
    padding: 0.6rem 1.2rem; /* Increased padding */
    border-radius: 0 14px 0 16px;
    font-size: 0.8rem; /* Slightly larger */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
}

/* Pricing Features */
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem; /* Smaller gap */
    padding: 0.5rem 0; /* Smaller padding */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.pricing-feature i {
    width: 14px; /* Smaller icon */
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem; /* Smaller icon */
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.pricing-feature span {
    flex: 1;
    font-size: 0.85rem; /* Much smaller like Egrow */
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.4;
}

.feature-description {
    font-size: 0.75rem; /* Smaller */
    color: var(--text-secondary);
    margin-top: 0.25rem;
    font-weight: 400;
    line-height: 1.3;
}

/* Remove old pricing CTA at bottom */
.pricing-cta {
    display: none;
}

/* Four Column Grid - Wider Cards */
.pricing-grid-four {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem; /* Slightly smaller gap */
    max-width: 1100px; /* Slightly smaller max-width for better centering */
    margin: 0 auto;
    align-items: start;
    justify-content: center;
}

/* Responsive Updates - Better spacing */
@media (max-width: 1400px) {
    .pricing-container {
        max-width: 1200px;
        padding: 0 1.5rem;
    }
}

@media (max-width: 1200px) {
    .pricing-grid-four {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 800px;
        margin: 0 auto;
    }

    .pricing-container {
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .pricing-grid-four {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing-card {
        padding: 2rem;
    }

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

    .pricing-header h3 {
        font-size: 1.5rem;
    }

    .pricing-container {
        padding: 0 1rem;
    }
}

/* Disabled Features */
.pricing-feature.disabled {
    opacity: 0.5;
}

.pricing-feature.disabled i {
    color: #ef4444;
}

/* Pricing Comparison Table Styles */
.pricing-comparison {
    padding: 5rem 0;
    background: var(--bg-dark);
}

.pricing-comparison-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 1rem;
}

.pricing-comparison .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-comparison .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.pricing-comparison .section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 16px;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-table th {
    background: rgba(255, 255, 255, 0.02);
    font-weight: 600;
    color: var(--text-primary);
}

.feature-column {
    width: 35%;
    min-width: 300px;
}

.plan-column {
    width: 16.25%;
    min-width: 150px;
    text-align: center;
}

.recommended-column {
    background: rgba(20, 184, 166, 0.05);
    border-left: 2px solid var(--primary-color);
    border-right: 2px solid var(--primary-color);
    position: relative;
}

.recommended-column::before {
    content: "RECOMMENDED";
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 0 0 8px 8px;
}

.plan-header h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.plan-header p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.feature-cell {
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-info strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.feature-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

.plan-cell {
    text-align: center;
    font-weight: 500;
    color: var(--text-primary);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.plan-cell:last-child {
    border-right: none;
}

.recommended-cell {
    background: rgba(20, 184, 166, 0.05);
    font-weight: 600;
}

.plan-cell.available {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
}

.plan-cell.unavailable {
    color: #ef4444;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Responsive Design for Comparison Table */
@media (max-width: 1200px) {
    .comparison-table-wrapper {
        overflow-x: scroll;
    }

    .comparison-table {
        min-width: 800px;
    }

    .feature-column {
        min-width: 250px;
    }

    .plan-column {
        min-width: 120px;
    }
}

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

    .pricing-comparison .section-header h2 {
        font-size: 2rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 1rem 0.75rem;
    }

    .feature-column {
        min-width: 200px;
    }

    .plan-column {
        min-width: 100px;
    }

    .feature-info strong {
        font-size: 0.9rem;
    }

    .feature-info p {
        font-size: 0.8rem;
    }
}

/* Features Comparison Section */
.features-comparison {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.comparison-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.comparison-table .feature-column {
    text-align: left;
    min-width: 200px;
}

.comparison-table .popular-column {
    background: rgba(20, 184, 166, 0.1);
    color: var(--primary-color);
    position: relative;
}

.comparison-table .popular-cell {
    background: rgba(20, 184, 166, 0.05);
    font-weight: 600;
    color: var(--primary-color);
}

.comparison-table .feature-name {
    font-weight: 500;
    color: var(--text-primary);
}

.comparison-table .text-green {
    color: var(--primary-color);
}

.comparison-table .text-red {
    color: #ef4444;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--bg-dark);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--bg-secondary);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Pricing Page */
@media (max-width: 1024px) {
    .pricing-grid-four {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .pricing-hero .section-header h1 {
        font-size: 2.5rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 1rem 0.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .pricing-grid-four {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-hero {
        padding: 100px 0 40px;
    }

    .pricing-hero .section-header h1 {
        font-size: 2rem;
    }

    .comparison-table-wrapper {
        margin-top: 2rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.25rem;
        font-size: 0.8rem;
    }

    .comparison-table .feature-column {
        min-width: 150px;
    }

    .faq-question {
        padding: 1rem 1.5rem;
    }

    .faq-answer p {
        padding: 0 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .pricing-hero-container,
    .comparison-container,
    .faq-container {
        padding: 0 1rem;
    }

    .pricing-hero .section-header h1 {
        font-size: 1.75rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.5rem 0.25rem;
        font-size: 0.75rem;
    }
}

/* ===== LOGIN PAGE STYLES ===== */
.login-page {
    height: 100vh;
    overflow: hidden;
}

.login-container {
    display: flex;
    height: 100vh;
    position: relative;
    z-index: 1;
}

/* Left Side - Demo/Preview */
.login-left {
    flex: 1;
    background: var(--gradient-card);
    padding: 0rem 3rem; /* Increased padding top/bottom */
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Changed from center to flex-start */
    position: relative;
    overflow-y: auto; /* Make scrollable */
    min-height: 100vh; /* Ensure minimum height */
}

/* Custom scrollbar for login-left */
.login-left::-webkit-scrollbar {
    width: 4px;
}

.login-left::-webkit-scrollbar-track {
    background: transparent;
}

.login-left::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.login-left::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Firefox scrollbar */
.login-left {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

.login-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(12, 179, 138, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(10, 150, 115, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.demo-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 2rem; /* Added extra padding at top */
}

.demo-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.demo-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 400px;
    margin: 0 auto;
}

/* Chat Interface */
.demo-preview {
    max-width: 500px;
    margin: 0 auto 3rem;
}

.chat-interface {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-card);
}

.chat-header {
    background: var(--bg-secondary);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.chat-info h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.status {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.chat-messages {
    padding: 1.5rem;
    max-height: 400px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.bot-message {
    align-self: flex-start;
    max-width: 80%;
}

.user-message {
    align-self: flex-end;
    max-width: 70%;
}

.message-content {
    background: var(--bg-secondary);
    padding: 1rem 1.25rem;
    border-radius: 18px;
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.chat-input {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 1rem;
    align-items: center;
}

.chat-input input {
    flex: 1;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 0.75rem 1.25rem;
    color: var(--text-primary);
    font-size: 0.95rem;
    outline: none;
}

.chat-input input::placeholder {
    color: var(--text-muted);
}

.chat-input input:focus {
    border-color: rgba(255, 255, 255, 0.3);
}

.chat-input button {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.chat-input button:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-primary);
}
.message-content {
    background: var(--bg-secondary);
    padding: 1rem 1.25rem;
    border-radius: 18px;
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.user-message .message-content {
    background: var(--gradient-primary);
    color: white;
}

.message-content ul {
    margin: 0.5rem 0 0 0;
    padding-left: 0;
    list-style: none;
}

.message-content li {
    margin: 0.25rem 0;
    font-size: 0.9rem;
}

.chat-input {
    padding: 1.5rem;
    background: rgba(11, 13, 23, 0.95);
    color: var(--text-primary);
}

.chat-input input {
    flex: 1;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 0.75rem 1.25rem;
    color: var(--text-primary);
    font-size: 0.95rem;
    outline: none;
}

.chat-input input::placeholder {
    color: var(--text-muted);
}

.chat-input input:focus {
    border-color: rgba(255, 255, 255, 0.3);
}

/* Right Side - Login Form */
.login-right {
    flex: 0 0 480px;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    overflow-y: auto; /* Make scrollable */
}

/* Demo Stats */
.demo-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    padding-bottom: 2rem; /* Added extra padding at bottom */
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Custom scrollbar for login-right */
.login-right::-webkit-scrollbar {
    width: 4px;
}

.login-right::-webkit-scrollbar-track {
    background: transparent;
}

.login-right::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.login-right::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Firefox scrollbar */
.login-right {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

.order-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 12px;
    margin-top: 0.5rem;
}

/* Right Side - Login Form */
.login-right {
    flex: 0 0 480px;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.login-form-container {
    width: 100%;
    max-width: 400px;
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header .logo {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.login-header .logo-image {
    height: 50px;
    width: auto;
}

.login-header .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.login-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

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

.chat-input input::placeholder {
    color: var(--text-muted);
}

.chat-input button {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chat-input button:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-primary);
}

/* Demo Stats */
.demo-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Right Side - Login Form */
.login-right {
    flex: 0 0 480px;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.login-form-container {
    width: 100%;
    max-width: 400px;
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header .logo {
    margin-bottom: 1.5rem;
}

.login-header .logo-image {
    height: 50px;
    width: auto;
}

.login-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

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

/* Social Login */
.social-login {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: transparent;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.social-btn i {
    font-size: 1.1rem;
}

.apple-btn:hover {
    border-color: #000;
    background: rgba(0, 0, 0, 0.1);
}

.google-btn:hover {
    border-color: #4285f4;
    background: rgba(66, 133, 244, 0.1);
}

.microsoft-btn:hover {
    border-color: #00a1f1;
    background: rgba(0, 161, 241, 0.1);
}

/* Divider */
.divider {
    position: relative;
    text-align: center;
    margin: 1.5rem 0;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.divider span {
    background: var(--bg-card);
    color: var(--text-muted);
    padding: 0 1rem;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

/* Password Toggle Eye Icon Styling and Positioning */
.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
}

.password-toggle:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
}

.password-toggle i {
    font-size: 1rem;
    position: static;
    transform: none;
}

/* Login Form */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    position: relative;
}

.form-group input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(12, 179, 138, 0.1);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.form-group i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1rem;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.password-toggle:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
}

/* Form Options */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0.5rem 0;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-secondary);
    user-select: none;
}

.checkbox-container input {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-container input:checked + .checkmark {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
}

.checkbox-container input:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .login-container {
        flex-direction: column;
        margin-top: 2rem;
    }

    .login-left {
        flex: none;
        height: 60vh;
        padding: 2rem;
        min-height: 60vh;
        justify-content: center;
    }

    .login-right {
        flex: none;
        height: 40vh;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        min-height: 40vh;
    }

    .demo-header h1 {
        font-size: 2rem;
    }

    .demo-stats {
        gap: 2rem;
    }

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

@media (max-width: 768px) {
    .login-container {
        margin-top: 1rem;
    }

    /* Hide demo section on mobile, show only login */
    .login-left {
        display: none;
    }

    .login-right {
        flex: 1;
        height: 100vh;
        min-height: 100vh;
        padding: 2rem 1.5rem;
        border-left: none;
        border-top: none;
        overflow-y: auto;
    }

    .social-login {
        gap: 0.5rem;
    }

    .social-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }

    .login-header .logo-text {
        font-size: 1.3rem;
    }

    .login-form-container {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .login-container {
        height: 100vh;
        min-height: 100vh;
        margin-top: 0.5rem;
    }

    .login-left {
        display: none;
    }

    .login-right {
        height: 100vh;
        min-height: 100vh;
        padding: 1.5rem 1rem;
    }

    .login-form-container {
        max-width: none;
    }

    .login-header .logo {
        flex-direction: column;
        gap: 0.5rem;
    }

    .login-header .logo-text {
        font-size: 1.2rem;
    }

    .social-btn {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }

    .login-header h2 {
        font-size: 1.5rem;
    }

    .login-header p {
        font-size: 0.9rem;
    }
}

.forgot-password {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.forgot-password:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Login Button */
.login-btn {
    background: var(--gradient-primary);
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

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

.login-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Signup Link */
.signup-link {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.signup-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .login-container {
        flex-direction: column;
    }

    .login-left {
        flex: none;
        height: 60vh;
        padding: 2rem;
        margin: 1rem 0; /* Reduced margin for tablets */
    }

    .login-right {
        flex: none;
        height: 40vh;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin: 1rem 0; /* Reduced margin for tablets */
    }

    .demo-header h1 {
        font-size: 2rem;
    }

    .demo-stats {
        gap: 2rem;
    }

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

@media (max-width: 768px) {
    .login-left {
        padding: 1.5rem;
        margin: 0.5rem 0; /* Smaller margin for mobile */
    }

    .login-right {
        padding: 1.5rem;
        margin: 0.5rem 0; /* Smaller margin for mobile */
    }

    .demo-header h1 {
        font-size: 1.8rem;
    }

    .demo-header p {
        font-size: 1rem;
    }

    .demo-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .stat-item {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.25rem;
        margin-bottom: 0;
    }

    .social-login {
        gap: 0.5rem;
    }

    .social-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }

    .login-header .logo-text {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .login-container {
        height: auto;
        min-height: 100vh;
    }

    .login-left {
        height: auto;
        min-height: 50vh;
        margin: 0; /* No margin on very small screens */
    }

    .login-right {
        height: auto;
        min-height: 50vh;
        margin: 0; /* No margin on very small screens */
    }

    .demo-preview {
        margin-bottom: 2rem;
    }

    .chat-interface {
        border-radius: 16px;
    }

    .login-form-container {
        max-width: none;
    }

    .login-header .logo {
        flex-direction: column;
        gap: 0.5rem;
    }

    .login-header .logo-text {
        font-size: 1.2rem;
    }
}

.signup-link a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Login Footer */
.login-footer {
    text-align: center;
    margin-top: 1rem;
}

.login-footer p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.login-footer a {
    color: var(--primary-color);
    text-decoration: none;
}

.login-footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .login-container {
        flex-direction: column;
    }

    .login-left {
        flex: none;
        height: 60vh;
        padding: 2rem;
    }

    .login-right {
        flex: none;
        height: 40vh;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .demo-header h1 {
        font-size: 2rem;
    }

    .demo-stats {
        gap: 2rem;
    }

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

@media (max-width: 768px) {
    .login-left {
        padding: 1.5rem;
    }

    .login-right {
        padding: 1.5rem;
    }

    .demo-header h1 {
        font-size: 1.8rem;
    }

    .demo-header p {
        font-size: 1rem;
    }

    .demo-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .stat-item {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.25rem;
        margin-bottom: 0;
    }

    .social-login {
        gap: 0.5rem;
    }

    .social-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .login-container {
        height: auto;
        min-height: 100vh;
    }

    .login-left {
        height: auto;
        min-height: 50vh;
    }

    .login-right {
        height: auto;
        min-height: 50vh;
    }

    .demo-preview {
        margin-bottom: 2rem;
    }

    .chat-interface {
        border-radius: 16px;
    }

    .login-form-container {
        max-width: none;
    }
}