/* Custom CSS for PhotoFlow.studio Landing Page */

:root {
    /* === PhotoFlow.studio Professional Color Palette === */
    
    /* Primary Brand Colors (Emerald) */
    --primary-50: #ecfdf5;
    --primary-100: #d1fae5;
    --primary-200: #a7f3d0;
    --primary-300: #6ee7b7;
    --primary-400: #34d399;
    --primary-500: #10b981;
    --primary-600: #059669;
    --primary-700: #047857;
    --primary-800: #065f46;
    --primary-900: #064e3b;
    
    /* Secondary/Accent Colors (Amber) */
    --secondary-50: #fffbeb;
    --secondary-100: #fef3c7;
    --secondary-200: #fde68a;
    --secondary-300: #fcd34d;
    --secondary-400: #fbbf24;
    --secondary-500: #f59e0b;
    --secondary-600: #d97706;
    --secondary-700: #b45309;
    --secondary-800: #92400e;
    --secondary-900: #78350f;
    
    /* Neutral Grays */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Slate for premium feel */
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    
    /* Semantic Colors */
    --success-50: #f0fdf4;
    --success-100: #dcfce7;
    --success-500: #22c55e;
    --success-600: #16a34a;
    --success-700: #15803d;
    
    --warning-50: #fffbeb;
    --warning-100: #fef3c7;
    --warning-500: #f59e0b;
    --warning-600: #d97706;
    --warning-700: #b45309;
    
    --error-50: #fef2f2;
    --error-100: #fee2e2;
    --error-500: #ef4444;
    --error-600: #dc2626;
    --error-700: #b91c1c;
    
    --info-50: #eff6ff;
    --info-100: #dbeafe;
    --info-500: #3b82f6;
    --info-600: #2563eb;
    --info-700: #1d4ed8;
    
    /* Application Colors */
    --text-primary: var(--slate-900);
    --text-secondary: var(--slate-700);
    --text-muted: var(--slate-500);
    --text-light: var(--slate-400);
    
    --bg-primary: #ffffff;
    --bg-secondary: var(--slate-50);
    --bg-tertiary: var(--slate-100);
    
    --border-light: var(--slate-200);
    --border-default: var(--slate-300);
    --border-strong: var(--slate-400);
    
    /* Legacy color mappings for backward compatibility */
    --primary-color: var(--primary-500);
    --primary-dark: var(--primary-600);
    --secondary-color: var(--slate-700);
    --accent-color: var(--secondary-500);
    --text-color: var(--text-primary);
    --text-muted: var(--text-muted);
    --bg-light: var(--bg-secondary);
    --border-color: var(--border-default);
    
    /* Professional Shadow System */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Legacy shadow mappings */
    --shadow: var(--shadow-md);
    --shadow-lg: var(--shadow-lg);
    
    /* Brand Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-400) 0%, var(--secondary-500) 100%);
    --gradient-hero: linear-gradient(135deg, var(--primary-50) 0%, var(--primary-100) 25%, var(--secondary-50) 75%, var(--secondary-100) 100%);
    --gradient-card: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    
    /* Interactive States */
    --hover-overlay: rgba(255, 255, 255, 0.1);
    --active-overlay: rgba(255, 255, 255, 0.2);
    --focus-ring: 0 0 0 3px rgba(16, 185, 129, 0.1);
    
    /* Surface Colors */
    --surface-1: var(--bg-primary);
    --surface-2: var(--bg-secondary);
    --surface-3: var(--bg-tertiary);
    --surface-elevated: var(--bg-primary);
    --surface-overlay: rgba(255, 255, 255, 0.9);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    scroll-behavior: smooth;
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Override Bootstrap button colors completely */
.btn-primary {
    background: var(--gradient-primary) !important;
    border-color: var(--primary-500) !important;
    color: white !important;
    box-shadow: var(--shadow-sm) !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%) !important;
    border-color: var(--primary-600) !important;
    color: white !important;
    box-shadow: var(--shadow-md) !important;
}

.btn-outline-primary {
    background: var(--bg-primary) !important;
    border-color: var(--primary-500) !important;
    color: var(--primary-500) !important;
    box-shadow: var(--shadow-sm) !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
    background: var(--primary-50) !important;
    border-color: var(--primary-600) !important;
    color: var(--primary-600) !important;
    box-shadow: var(--shadow-md) !important;
}

/* Override Bootstrap text-primary */
.text-primary {
    color: var(--primary-500) !important;
}

/* Navigation */
.navbar {
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.95) !important;
    border-bottom: 1px solid var(--border-light);
    padding: 1.25rem 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary) !important;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.navbar-brand i {
    margin-right: 0.5rem;
    font-size: 1.6rem;
    color: var(--primary-500);
}

.nav-link {
    font-weight: 500;
    color: var(--text-secondary) !important;
    transition: color 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.95rem;
    margin: 0 0.5rem;
}

.nav-link:hover {
    color: var(--primary-500) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%);
    color: var(--text-primary);
    overflow: hidden;
    position: relative;
    padding: 8rem 0 6rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(251, 191, 36, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 40% 40%, rgba(16, 185, 129, 0.08) 0%, transparent 50%);
    animation: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, 
            rgba(16, 185, 129, 0.15) 0%, 
            transparent 25%, 
            rgba(251, 191, 36, 0.12) 50%, 
            transparent 75%,
            rgba(16, 185, 129, 0.1) 100%),
        radial-gradient(circle at 70% 70%, rgba(16, 185, 129, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 30% 30%, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
    background-size: 200% 200%;
    animation: none;
    opacity: 0.9;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    animation: fadeInUp 1s ease-out;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: -0.03em;
    max-width: 650px;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    color: var(--text-muted);
    animation: fadeInUp 1s ease-out 0.2s both;
    line-height: 1.6;
    max-width: 560px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.hero-buttons {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.2s ease;
    margin-right: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    border: 1px solid transparent;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    position: relative;
    overflow: hidden;
}

.hero-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-buttons .btn-primary {
    animation: fadeInUp 1s ease-out 0.4s both;
    background: var(--gradient-primary);
    border-color: var(--primary-500);
    color: white;
    box-shadow: 0 2px 10px rgba(16, 185, 129, 0.3);
}

.hero-buttons .btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%);
    border-color: var(--primary-600);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
}

.hero-buttons .btn-outline-primary {
    color: var(--primary-500);
    border-color: var(--border-light);
    background: var(--bg-primary);
    box-shadow: var(--shadow-sm);
}

.hero-buttons .btn-outline-primary:hover {
    background: var(--bg-secondary);
    border-color: var(--primary-500);
    color: var(--primary-500);
    box-shadow: var(--shadow-md);
}

.hero-stats {
    animation: fadeInUp 1s ease-out 0.6s both;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Hero Animation */
.hero-animation {
    position: relative;
    height: 500px;
    overflow: hidden;
    z-index: 15;
    margin-top: 2rem;
}

.animated-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.card-row {
    position: absolute;
    display: flex;
    gap: 1rem;
    width: 200%;
    animation: slideLeftToRight 20s infinite linear;
}

.card-row.row-1 {
    top: 0;
    animation-delay: 0s;
}

.card-row.row-2 {
    top: 120px;
    animation-delay: -7s;
}

.card-row.row-3 {
    top: 240px;
    animation-delay: -14s;
}

@keyframes slideLeftToRight {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0%);
    }
}

.animated-cards .feature-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    padding: 1.5rem;
    min-width: 220px;
    height: 100px;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.animated-cards .feature-card:hover {
    transform: translateY(-2px);
}

.animated-cards .feature-card .card-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.animated-cards .feature-card .card-text {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Individual card colors */
.card-portfolio {
    background: linear-gradient(135deg, #10b981, #3b82f6);
}

.card-clients {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.card-photos {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.card-upload {
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
}

.card-brand {
    background: linear-gradient(135deg, #f59e0b, #f97316);
}

.card-delivery {
    background: linear-gradient(135deg, #10b981, #059669);
}

.card-analytics {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
}

.card-payments {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.card-mobile {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

/* Central Feature */
.central-feature {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
}

.card-main {
    background: linear-gradient(135deg, #1f2937, #374151);
    min-width: 300px;
    height: 120px;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    animation: pulse 2s ease-in-out infinite;
}

.card-main .card-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.card-main .card-text {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.card-arrow {
    font-size: 1.5rem;
    color: var(--primary-color);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Sections */
.section {
    padding: 6rem 0;
}

.section.bg-light {
    background: #f8fafb;
}

.section.bg-primary {
    background: #ffffff;
}

/* Override Bootstrap's bg-primary completely */
.bg-primary {
    background-color: #ffffff !important;
}

/* Pricing Section with Professional Design */
#pricing {
    background: linear-gradient(135deg, #f8fafb 0%, #ffffff 100%) !important;
    position: relative;
}

#pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(16, 185, 129, 0.02) 0%, transparent 70%);
}

#pricing .container {
    position: relative;
    z-index: 2;
}

.signup-section {
    background: var(--gradient-primary);
    color: white;
    position: relative;
}

.signup-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    opacity: 0.95;
    z-index: 1;
}

.signup-section .container {
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-weight: 400;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Section */
#features {
    background: #f8fafb !important;
    position: relative;
}

#features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top, rgba(16, 185, 129, 0.01) 0%, transparent 50%);
}

#features .container {
    position: relative;
    z-index: 2;
}

.feature-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(16, 185, 129, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.feature-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Pricing Section */
.pricing-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    position: relative;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(16, 185, 129, 0.1);
}

.pricing-card.featured {
    background: linear-gradient(135deg, #ffffff 0%, #f8fdfb 100%);
    color: var(--text-primary);
    transform: scale(1.03);
    border-color: rgba(16, 185, 129, 0.2);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.08);
}

.pricing-card.featured:hover {
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.12);
    border-color: rgba(16, 185, 129, 0.3);
}

.pricing-card.featured .pricing-features li {
    color: var(--text-primary);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
}

.pricing-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
}

.pricing-price .amount {
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0.25rem;
}

.pricing-price .period {
    font-size: 1rem;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    margin-right: 0.75rem;
    width: 16px;
}

.pricing-features li i.fa-check {
    color: var(--primary-color);
}

/* Demo Section */
#demo {
    background: #f8fafb !important;
    position: relative;
}

#demo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at bottom, rgba(16, 185, 129, 0.01) 0%, transparent 50%);
}

#demo .container {
    position: relative;
    z-index: 2;
}

.demo-features {
    margin-top: 2rem;
}

.demo-feature {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.demo-feature:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.demo-feature i {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    color: var(--primary-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 1rem;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.1);
}

.demo-feature h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.demo-feature p {
    color: var(--text-muted);
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.demo-video {
    position: relative;
    background: var(--bg-secondary);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.video-placeholder {
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.video-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.video-placeholder h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.video-placeholder p {
    opacity: 0.8;
}

/* Signup Section */
.signup-form {
    max-width: 800px;
    margin: 0 auto;
}

.signup-form .form-control {
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.signup-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.signup-form .form-control:focus {
    border-color: white;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.2);
}

.signup-form .btn {
    border-radius: 50px;
    font-weight: 600;
}

/* Footer */
footer {
    background: var(--slate-800) !important;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.footer-brand i {
    margin-right: 0.5rem;
    color: var(--primary-400);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--slate-300);
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.footer-links a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--slate-700);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-300);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-500);
    color: white;
    transform: translateY(-2px);
}

/* 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 float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes gradientShift {
    0%, 100% {
        transform: translateX(0) translateY(0) scale(1);
        opacity: 1;
    }
    25% {
        transform: translateX(50px) translateY(-30px) scale(1.2);
        opacity: 0.7;
    }
    50% {
        transform: translateX(-30px) translateY(40px) scale(0.8);
        opacity: 0.9;
    }
    75% {
        transform: translateX(40px) translateY(-20px) scale(1.1);
        opacity: 0.6;
    }
}

@keyframes cardPulse {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 0 12px 40px rgba(16, 185, 129, 0.15);
    }
}

@keyframes gradientWave {
    0% {
        background-position: 0% 50%;
        filter: hue-rotate(0deg);
    }
    100% {
        background-position: 100% 50%;
        filter: hue-rotate(10deg);
    }
}

@keyframes heroGlow {
    0%, 100% {
        background: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%);
    }
    50% {
        background: linear-gradient(135deg, #f8fdfb 0%, #ecfdf5 100%);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-stats .d-flex {
        flex-direction: column;
        gap: 1rem !important;
    }
    
    .stat-item {
        margin-bottom: 1rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .signup-form .row {
        flex-direction: column;
    }
    
    .signup-form .col-md-4 {
        margin-bottom: 1rem;
    }
    
    /* Hero Animation Mobile */
    .hero-animation {
        height: 400px;
    }
    
    .animated-cards .feature-card {
        min-width: 180px;
        height: 80px;
        padding: 1rem;
    }
    
    .card-main {
        min-width: 250px;
        height: 100px;
    }
    
    .card-row.row-2 {
        top: 100px;
    }
    
    .card-row.row-3 {
        top: 200px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .feature-card {
        margin-bottom: 2rem;
    }
    
    .pricing-card {
        margin-bottom: 2rem;
    }
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    color: white;
}

.btn-gradient:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: white;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* New animations for enhanced visuals */
/* Removed gradientShift animation */

/* Removed textGlow animation */ 

/* Hero Section Enhancements */
.hero-badge {
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge .badge {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.025em;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--primary-200);
}

.hero-features {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-features .feature-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.hero-features .feature-item:hover {
    color: var(--primary-600);
    transform: translateX(5px);
}

.hero-features .feature-item i {
    width: 20px;
    font-size: 1.1rem;
}

.hero-trust {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.trust-stars {
    display: flex;
    gap: 2px;
}

.trust-stars i {
    font-size: 1rem;
    color: var(--secondary-500);
}

.trust-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.trust-text strong {
    color: var(--text-primary);
}

/* Dashboard Preview */
.hero-animation {
    position: relative;
    animation: fadeInRight 1s ease-out 0.6s both;
    overflow: visible;
    padding: 2rem;
    min-height: 500px;
    z-index: 10;
}

.dashboard-preview {
    position: relative;
    z-index: 2;
    max-width: 500px;
    margin: 0 auto;
}

.browser-frame {
    background: var(--bg-primary);
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.browser-header {
    background: var(--bg-secondary);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-light);
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #ef4444;
}

.dot.yellow {
    background: #f59e0b;
}

.dot.green {
    background: #22c55e;
}

.browser-url {
    flex: 1;
    text-align: center;
    background: var(--bg-primary);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    margin: 0 2rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    border: 1px solid var(--border-light);
}

.browser-content {
    padding: 2rem;
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.dashboard-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-card {
    background: var(--bg-secondary);
    padding: 1.25rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.stat-card .stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-600);
    margin-bottom: 0.25rem;
}

.stat-card .stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.recent-activity {
    space-y: 0.75rem;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-light);
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-item i {
    width: 20px;
    font-size: 1rem;
}

/* Floating Cards */
.floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: visible;
}

.floating-card {
    position: absolute;
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    display: flex !important;
    align-items: center;
    gap: 0.75rem;
    min-width: 180px;
    max-width: 220px;
    animation: float 3s ease-in-out infinite;
    z-index: 100;
    opacity: 0.95;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.floating-card:hover {
    opacity: 1;
    transform: translateY(-2px) rotate(var(--rotate-angle, 0deg));
    box-shadow: var(--shadow-xl);
}

.floating-card.card-1 {
    top: 10%;
    right: 8%;
    animation-delay: 0s;
    --rotate-angle: -5deg;
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--bg-primary) 100%);
    border: 1px solid var(--primary-200);
}

.floating-card.card-1 .card-icon {
    background: var(--primary-100);
}

.floating-card.card-1 .card-icon i {
    color: var(--primary-600);
}

.floating-card.card-2 {
    top: 48%;
    left: 5%;
    animation-delay: 1s;
    --rotate-angle: 3deg;
    background: linear-gradient(135deg, var(--secondary-50) 0%, var(--bg-primary) 100%);
    border: 1px solid var(--secondary-200);
}

.floating-card.card-2 .card-icon {
    background: var(--secondary-100);
}

.floating-card.card-2 .card-icon i {
    color: var(--secondary-600);
}

.floating-card.card-3 {
    bottom: 12%;
    right: 12%;
    animation-delay: 2s;
    --rotate-angle: -2deg;
    background: linear-gradient(135deg, var(--slate-50) 0%, var(--bg-primary) 100%);
    border: 1px solid var(--slate-200);
}

.floating-card.card-3 .card-icon {
    background: var(--slate-100);
}

.floating-card.card-3 .card-icon i {
    color: var(--slate-600);
}

.floating-card .card-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--primary-50);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.floating-card .card-icon i {
    font-size: 1.2rem;
    color: var(--primary-600);
}

.floating-card .card-content {
    flex: 1;
}

.floating-card .card-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.floating-card .card-subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Enhanced Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(var(--rotate-angle, 0deg));
    }
    50% {
        transform: translateY(-10px) rotate(var(--rotate-angle, 0deg));
    }
}

@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);
    }
}

/* Responsive Design for New Elements */
@media (max-width: 576px) {
    .hero-features .row {
        gap: 0.5rem;
    }
    
    .dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .floating-card {
        display: none !important;
    }
    
    .hero-animation {
        padding: 1rem;
    }
    
    .browser-url {
        margin: 0 1rem;
        font-size: 0.8rem;
    }
    
    .browser-content {
        padding: 1.5rem;
    }
    
    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 576px) {
    .hero-badge .badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .stat-card .stat-value {
        font-size: 1.25rem;
    }
    
    .browser-content {
        padding: 1rem;
    }
    
    .trust-text {
        font-size: 0.8rem;
    }
    
    .hero-animation {
        padding: 0.5rem;
    }
}

@media (min-width: 577px) {
    .floating-card {
        display: flex !important;
        visibility: visible !important;
    }
}

/* Ensure cards are visible on desktop */
.floating-card {
    visibility: visible !important;
}

@media (min-width: 1200px) {
    .floating-card.card-1 {
        right: 10%;
    }
    
    .floating-card.card-2 {
        left: 5%;
    }
    
    .floating-card.card-3 {
        right: 15%;
    }
} 