/* Zeinto Brand Design System - Professional Kubera-Inspired Palette */
:root {
    /* Professional Wealth Management Palette */
    --bg-primary: #0B1426;        /* Deep navy main background */
    --bg-secondary: #152238;      /* Lighter navy for cards */
    --bg-elevated: #1F2B42;       /* Elevated elements */
    --bg-gradient: linear-gradient(135deg, #0B1426 0%, #152238 100%);
    
    /* Text Colors */
    --text-primary: #FFFFFF;      /* Main headings */
    --text-secondary: #CBD5E1;    /* Body text - improved contrast */
    --text-muted: #94A3B8;        /* Supporting text */
    
    /* Professional Accent Colors */
    --accent-primary: #3B82F6;    /* Professional blue CTAs */
    --accent-gold: #F59E0B;       /* Sophisticated gold accent */
    --accent-success: #10B981;    /* Success states */
    --accent-warning: #F59E0B;    /* Alerts, warnings */
    --accent-error: #EF4444;      /* Error states */
    
    /* Legacy variables for compatibility */
    --primary: #3B82F6;
    --accent: #F59E0B;
    --text: #FFFFFF;
    --text-muted: #94A3B8;
    --bg: #0B1426;
    --bg-light: #152238;
    --border: #1F2B42;
    --hover: #1F2B42;
    --steel: #CBD5E1;
    
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-mono: 'SF Mono', Monaco, monospace;
    
    /* Professional color palette - updated */
    --zeinto-navy: #0B1426;
    --zeinto-gold: #F59E0B;
    --zeinto-light-navy: #152238;
    --zeinto-dark-navy: #071019;
    --zeinto-gold-hover: #D97706;
    --zeinto-platinum: #CBD5E1;
    --zeinto-blue: #3B82F6;
    --zeinto-blue-hover: #2563EB;
}

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

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700;800;900&display=swap');

body {
    font-family: var(--font);
    color: var(--text-secondary);
    background: var(--bg-primary);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
    letter-spacing: -0.011em;
}

/* Professional Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 50%, #F59E0B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-gold {
    background: linear-gradient(135deg, var(--zeinto-gold) 0%, var(--zeinto-gold-hover) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Logo styling for Z icon + text layout */
.site-logo a:hover .logo-icon {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.site-logo a:hover .logo-text {
    transform: translateY(-1px);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Enhanced Graphics & Animations */
.animate-on-scroll {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-child {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-child.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

/* DEPLOYMENT FIX - Ensure all critical content is always visible */
.hero-title, .hero-subtitle, .wealth-metrics-preview, .hero-cta,
.feature-card, .pricing-card, .security-section, .dashboard-preview {
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
}

/* Ensure navigation is always visible */
.nav, .nav-menu, .nav-item, .nav-cta {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Ensure dashboard image container is visible */
.dashboard-container, .dashboard-image {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

/* Ensure chart containers are visible and have proper height */
.chart-container {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    min-height: 400px !important;
}

.chart-container canvas {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

/* Enhanced Chart Containers for Professional Financial Graphics */
.chart-container {
    position: relative;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, #1A1D23 100%);
    border: 1px solid rgba(0, 229, 184, 0.2);
    border-radius: 16px;
    padding: 24px;
    margin: 32px 0;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 
                0 2px 8px rgba(0, 229, 184, 0.1);
    transition: all 0.3s ease;
}

.chart-container:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 229, 184, 0.4);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 
                0 4px 16px rgba(0, 229, 184, 0.2);
}

.chart-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(0, 229, 184, 0.03) 0%, 
        rgba(255, 184, 77, 0.03) 50%,
        rgba(108, 122, 255, 0.03) 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.chart-container:hover::before {
    opacity: 1;
}

.chart-container h3 {
    color: var(--text-primary);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.chart-container p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.chart-container canvas {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

/* Enhanced Feature Cards */
.feature-card {
    position: relative;
    background: linear-gradient(145deg, var(--bg-secondary) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.08) 0%, 
        rgba(245, 158, 11, 0.06) 30%,
        rgba(59, 130, 246, 0.04) 60%,
        rgba(245, 158, 11, 0.06) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.15), 0 0 40px rgba(245, 158, 11, 0.1);
}

/* Enhanced Icon Styling */
.feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.2) 0%, 
        rgba(245, 158, 11, 0.2) 50%,
        rgba(59, 130, 246, 0.2) 100%);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    color: var(--accent-primary);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) translateY(-4px);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.3);
}

.feature-card:hover .feature-icon::before {
    opacity: 1;
}

.feature-card:hover .feature-icon svg {
    color: var(--accent-gold);
    transform: scale(1.1);
}

/* Progress Bars with Animation */
.progress-container {
    background: var(--bg-elevated);
    border-radius: 8px;
    padding: 4px;
    margin: 16px 0;
    overflow: hidden;
}

.progress-bar {
    height: 8px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-gold));
    border-radius: 4px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hero Section Enhancements */
.hero {
    position: relative;
    background: var(--bg-gradient);
    overflow: hidden;
}

.particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    animation: float 6s ease-in-out infinite;
}

.floating-element.delay-1 { animation-delay: -2s; }
.floating-element.delay-2 { animation-delay: -4s; }

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

/* Interactive Wealth Metrics */
.wealth-metric {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.wealth-metric::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(0, 212, 170, 0.1), 
        transparent);
    transition: left 0.6s ease;
}

.wealth-metric:hover::before {
    left: 100%;
}

.wealth-metric:hover {
    transform: translateY(-4px);
    border-color: var(--accent-primary);
    box-shadow: 0 12px 24px rgba(0, 212, 170, 0.15);
}

.wealth-metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wealth-metric-label {
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

/* Glowing CTA Buttons */
.cta-button {
    position: relative;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--zeinto-blue-hover) 100%);
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.25);
    font-family: var(--font);
    letter-spacing: -0.01em;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.6s ease;
    transform: translate(-50%, -50%);
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 60px rgba(59, 130, 246, 0.35);
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 50%, #1e3a8a 100%);
}

/* Professional Background Options */

/* Option 1: Subtle Grid Pattern */
.bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 1;
}

/* Option 2: Elegant Gradient Mesh */
.bg-gradient-mesh {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 70%, rgba(16, 185, 129, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Option 3: Subtle Dot Matrix */
.bg-dots {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(59, 130, 246, 0.08) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 1;
}

/* Option 4: Financial Data Visualization Pattern */
.bg-financial-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(0deg, transparent 24%, rgba(59, 130, 246, 0.02) 25%, rgba(59, 130, 246, 0.02) 26%, transparent 27%, transparent 74%, rgba(59, 130, 246, 0.02) 75%, rgba(59, 130, 246, 0.02) 76%, transparent 77%, transparent),
        linear-gradient(90deg, transparent 24%, rgba(16, 185, 129, 0.02) 25%, rgba(16, 185, 129, 0.02) 26%, transparent 27%, transparent 74%, rgba(16, 185, 129, 0.02) 75%, rgba(16, 185, 129, 0.02) 76%, transparent 77%, transparent);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 1;
}

/* Option 5: Minimalist Topology Lines */
.bg-topology {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(30deg, transparent 40%, rgba(59, 130, 246, 0.05) 40.5%, rgba(59, 130, 246, 0.05) 41%, transparent 41.5%),
        linear-gradient(150deg, transparent 40%, rgba(139, 92, 246, 0.03) 40.5%, rgba(139, 92, 246, 0.03) 41%, transparent 41.5%);
    background-size: 200px 200px;
    pointer-events: none;
    z-index: 1;
}

/* Option 6: Clean Professional Overlay */
.bg-clean {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(59, 130, 246, 0.01) 50%, rgba(255, 255, 255, 0.02) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Animated Background Options */

/* Option 7: Floating Particles */
.bg-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(59, 130, 246, 0.6);
    border-radius: 50%;
    animation: float 20s infinite linear;
    opacity: 0;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 25s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 30s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 22s; }
.particle:nth-child(4) { left: 40%; animation-delay: 6s; animation-duration: 28s; }
.particle:nth-child(5) { left: 50%; animation-delay: 8s; animation-duration: 26s; }
.particle:nth-child(6) { left: 60%; animation-delay: 10s; animation-duration: 24s; }
.particle:nth-child(7) { left: 70%; animation-delay: 12s; animation-duration: 32s; }
.particle:nth-child(8) { left: 80%; animation-delay: 14s; animation-duration: 29s; }
.particle:nth-child(9) { left: 90%; animation-delay: 16s; animation-duration: 27s; }

@keyframes float {
    0% {
        transform: translateY(100vh) translateX(0px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

/* Option 8: Flowing Gradients */
.bg-flowing-gradients {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 70%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 70%),
        radial-gradient(circle at 40% 80%, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
    background-size: 300% 300%;
    animation: gradientFlow 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes gradientFlow {
    0%, 100% {
        background-position: 0% 0%, 100% 100%, 50% 50%;
    }
    33% {
        background-position: 100% 0%, 0% 100%, 100% 0%;
    }
    66% {
        background-position: 0% 100%, 100% 0%, 0% 100%;
    }
}

/* Option 9: Subtle Wave Animation */
.bg-waves {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 40%, rgba(59, 130, 246, 0.03) 50%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(139, 92, 246, 0.02) 50%, transparent 60%);
    background-size: 200px 200px, 150px 150px;
    animation: waveMove 20s linear infinite, waveMove2 25s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes waveMove {
    0% {
        background-position: 0 0, 0 0;
    }
    100% {
        background-position: 200px 200px, 0 0;
    }
}

@keyframes waveMove2 {
    0% {
        background-position: 0 0, 0 0;
    }
    100% {
        background-position: 0 0, 150px 150px;
    }
}

/* Option 10: Pulsing Dots */
.bg-pulsing-dots {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(59, 130, 246, 0.4) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: pulseDots 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes pulseDots {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* Option 11: Constellation Network */
.bg-constellation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.constellation-dot {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(59, 130, 246, 0.6);
    border-radius: 50%;
    animation: twinkle 3s ease-in-out infinite;
}

.constellation-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
    animation: lineFlow 8s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

@keyframes lineFlow {
    0%, 100% { transform: translateX(-100px); opacity: 0; }
    50% { transform: translateX(0); opacity: 1; }
}

/* Option 12: Morphing Blobs */
.bg-morphing-blobs {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
    background-size: 400px 400px;
    animation: morphBlobs 12s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes morphBlobs {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: rotate(0deg) scale(1);
    }
    25% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        transform: rotate(90deg) scale(1.1);
    }
    50% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: rotate(180deg) scale(0.9);
    }
    75% {
        border-radius: 40% 30% 60% 70% / 40% 70% 60% 30%;
        transform: rotate(270deg) scale(1.05);
    }
}

/* Wealth Metrics Preview Grid */
.wealth-metrics-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    margin: 48px 0;
}

@media (max-width: 768px) {
    .wealth-metrics-preview {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Interactive Data Visualizations */
.data-visualization {
    position: relative;
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 32px;
    margin: 32px 0;
    border: 1px solid var(--border);
}

.data-visualization-section {
    background: linear-gradient(135deg, #FAFBFC 0%, #F3F4F6 100%);
    padding: 80px 0;
    margin: 64px 0;
}

.chart-container {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
}

.chart-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 212, 170, 0.1);
}

.chart-container h3 {
    color: #111827;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.chart-container p {
    color: #6B7280;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.chart-container canvas {
    border-radius: 8px;
    background: #FAFBFC;
}

.data-visualization h3 {
    color: var(--text-primary);
    margin-bottom: 16px;
    font-size: 1.25rem;
    font-weight: 600;
}

.data-visualization p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* Enhanced Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-gold));
    border-radius: 2px;
}

.section-header h2 {
    color: var(--text-primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--text-primary), var(--accent-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Visual Enhancement for Logo */
.logo-image:hover {
    filter: drop-shadow(0 4px 12px rgba(0, 212, 170, 0.3));
    transform: scale(1.05);
    transition: all 0.3s ease;
}

/* Interactive Feature Grid Enhancements */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 40px;
    margin-top: 64px;
    perspective: 1000px;
}

/* Enhanced Dashboard Preview */
.dashboard-preview {
    position: relative;
    margin-top: 64px;
}

.dashboard-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: var(--bg-secondary);
    border: 1px solid var(--border);
}

.dashboard-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 212, 170, 0.2);
    transition: all 0.5s ease;
}

.dashboard-image {
    width: 100%;
    height: auto;
    display: block;
}

.dashboard-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.data-point {
    background: rgba(10, 11, 13, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 20px;
    min-width: 200px;
}

.data-point .label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.data-point .value {
    display: block;
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
}

.data-point .value.green {
    color: var(--accent-primary);
}

/* Pulse animation for interactive elements */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.wealth-metric:hover {
    animation: pulse 0.5s ease-in-out;
}

/* Enhanced mobile responsiveness */
@media (max-width: 768px) {
    .hero-content {
        text-align: center;
    }
    
    .wealth-metrics-preview {
        margin: 32px 0;
    }
    
    .chart-container {
        padding: 16px;
        margin: 16px 0;
    }
    
    .dashboard-overlay {
        position: static;
        margin-top: 16px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .data-point {
        min-width: auto;
        padding: 12px 16px;
    }
}

/* Navigation - Dark theme professional */
.navbar {
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
    backdrop-filter: blur(10px);
    background: rgba(10, 11, 13, 0.95);
}

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

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 80px;  /* Double the size as requested */
    width: auto;
}

/* Larger logo as requested */
.site-logo img { 
  height: 72px;         /* Double the size */
  max-height: 80px; 
  width: auto;
}

/* Proportionally larger on mobile too */
@media (max-width: 640px) {
  .site-logo img { height: 60px; }
}

/* Ensure clickable home link and good spacing */
.site-logo a { 
  display: inline-flex; 
  align-items: center; 
  padding: 6px 0; 
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 15px;
    transition: all 0.2s ease;
    padding: 8px 12px;
    border-radius: 6px;
    outline: none;
}

.nav-links a:hover,
.nav-links a:focus {
    color: var(--accent-primary);
    background: var(--bg-elevated);
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
}

.nav-cta, .btn-signin {
    background: var(--accent-primary);
    color: var(--bg-primary) !important;
    border-radius: 10px;
    padding: 10px 14px;
    font-weight: 600;
    transition: all .2s ease;
    text-decoration: none;
    font-size: 14px;
    opacity: 1 !important;
    visibility: visible !important;
    border: none;
}

.nav-cta:hover, .btn-signin:hover {
    background: #00F5C4;
    color: var(--bg-primary) !important;
    transform: translateY(-2px);
    opacity: 1 !important;
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.3);
}

.nav-cta:focus, .btn-signin:focus {
    outline: 2px solid #E0B354;
    outline-offset: 2px;
}

/* Mobile Navigation */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 20px;
    height: 2px;
    background: var(--text);
    margin: 2px 0;
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    background: white;
    border-top: 1px solid var(--border);
    padding: 20px;
}

.mobile-menu a {
    display: block;
    padding: 12px 0;
    text-decoration: none;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}

/* Hero Section - Clean and minimalist */
.hero {
    padding: 140px 0 100px;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, var(--bg-light) 100%);
}

.hero h1 {
    font-size: clamp(56px, 8vw, 84px);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 32px;
    color: var(--text);
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 22px;
    color: var(--text-muted);
    margin-bottom: 48px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* Scroll indicator */
.scroll-indicator {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    color: var(--text-muted);
    transition: color 0.3s ease;
    padding: 12px;
    border-radius: 50%;
    background: var(--hover);
}

.scroll-indicator a:hover {
    color: var(--accent);
    background: var(--border);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--zeinto-blue-hover) 100%);
    color: white;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.2);
    font-family: var(--font);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--zeinto-blue-hover) 0%, var(--accent-primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    padding: 16px 32px;
    border: 2px solid var(--border);
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(245, 158, 11, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text);
    letter-spacing: -0.01em;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 48px;
    margin-top: 60px;
}

.feature-card {
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: white;
    transition: all 0.3s ease;
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(13, 27, 42, 0.08);
    border-color: var(--accent);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    flex-grow: 1;
    font-size: 16px;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.feature-card:hover h3 {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card:hover p {
    opacity: 1;
    color: var(--text-primary);
}

/* Tooltips */
.tooltip {
    position: relative;
    cursor: help;
    color: var(--accent);
    font-size: 14px;
    margin-left: 4px;
}

.tooltip:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.tooltip:hover::before {
    content: '';
    position: absolute;
    bottom: 115%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: var(--primary);
    z-index: 1000;
}

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

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial {
    background: white;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.why-zeinto-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.why-zeinto-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 27, 42, 0.08);
    border-color: var(--accent);
}

.why-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent), #f4d03f);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.testimonial-content {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: var(--text);
    font-style: italic;
}

.testimonial-author h4 {
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text);
}

.testimonial-author p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Pricing */
.pricing {
    padding: 100px 0;
    background: white;
}

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

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
        padding: 0 16px;
    }
}

.pricing-card {
    background: white;
    border: 2px solid var(--kubera-border);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: var(--kubera-accent);
    transform: scale(1.05);
}

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

.plan-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--kubera-text);
}

.plan-price {
    font-size: 48px;
    font-weight: 700;
    color: var(--kubera-accent);
    margin-bottom: 8px;
}

.plan-period {
    color: var(--kubera-text-muted);
    margin-bottom: 32px;
}

.plan-features,
.features-list {
    list-style: none;
    margin-bottom: 32px;
    text-align: left;
}

.plan-features li,
.features-list li {
    padding: 8px 0;
    color: var(--text-primary);
    position: relative;
    padding-left: 24px;
    font-size: 16px;
    line-height: 1.5;
}

.plan-features li::before,
.features-list li::before {
    content: "✓";
    color: var(--accent-primary);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 8px;
}

/* Footer */
.footer {
    background: var(--primary);
    color: white;
    padding: 60px 0 40px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero h1 {
        font-size: 42px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .feature-icon {
        background: var(--primary);
        box-shadow: 0 4px 12px rgba(13, 27, 42, 0.3);
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .why-icon {
        box-shadow: 0 4px 12px rgba(224, 179, 84, 0.3);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
    
    /* Enhanced chart responsiveness */
    .chart-container {
        padding: 16px;
        margin: 20px 0;
    }
    
    .chart-container h3 {
        font-size: 1.2rem;
    }
    
    .chart-container p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .nav-container {
        padding: 0 16px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .features,
    .testimonials,
    .pricing {
        padding: 60px 0;
    }
}

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

/* Pricing Page Styles */
.pricing-hero {
    padding: 120px 0 80px 0;
    background: var(--bg-primary);
    color: var(--text-primary);
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.pricing-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.pricing-hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    opacity: 0.9;
}

.pricing-plans {
    padding: 80px 0;
    background: var(--bg-primary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 60px;
    margin-top: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 32px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.pricing-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 4px 16px rgba(0, 212, 170, 0.2);
}

.pricing-card.popular {
    border-color: var(--accent-primary);
    transform: scale(1.05);
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-elevated) 100%);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-primary);
    color: var(--bg-primary);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 212, 170, 0.3);
}

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

.price {
    margin: 20px 0;
}

.price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
}

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

.price-annual {
    margin-bottom: 24px;
    padding: 8px 12px;
    background: rgba(0, 212, 170, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    border: 1px solid rgba(0, 212, 170, 0.2);
}

.annual-price {
    color: var(--text-primary);
    font-weight: 600;
}

.savings {
    color: var(--accent-primary);
    font-weight: 600;
}

/* Mobile-specific optimizations */
@media (max-width: 768px) {
    .pricing-card {
        padding: 24px 20px;
        margin-bottom: 16px;
    }
    
    .pricing-card .price .amount {
        font-size: 2.5rem;
    }
    
    .features-list {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .features-list li {
        padding: 6px 0;
    }
    
    .btn-pricing {
        padding: 12px 24px;
        font-size: 16px;
        width: 100%;
    }
    
    .trial-info {
        font-size: 13px;
        margin-top: 8px;
    }
}

.plan-description {
    color: var(--text-muted);
    margin-bottom: 32px;
    font-size: 1rem;
}

.features-list {
    list-style: none;
    margin: 32px 0;
    padding: 0;
}

.features-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 24px;
    color: var(--text-secondary);
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    background: var(--bg-elevated);
    border-radius: 12px;
    padding: 4px;
    max-width: 400px;
    margin: 0 auto;
    border: 1px solid var(--border);
}

.toggle-btn {
    flex: 1;
    padding: 12px 24px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
}

.toggle-btn.active {
    background: var(--accent-primary);
    color: var(--bg-primary);
    box-shadow: 0 4px 12px rgba(0, 212, 170, 0.3);
}

.toggle-btn .discount {
    background: var(--accent-gold);
    color: var(--bg-primary);
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
    font-weight: 600;
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: bold;
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: 16px 24px;
    background: var(--bg-elevated);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s ease;
    margin: 32px 0 16px 0;
    border: 1px solid var(--border);
}

.btn-pricing:hover {
    background: var(--accent-primary);
    color: var(--bg-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.3);
}

.btn-pricing.featured {
    background: var(--accent-primary);
    color: var(--bg-primary);
    box-shadow: 0 4px 16px rgba(0, 212, 170, 0.3);
}

.btn-pricing.featured:hover {
    background: #00B897;
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.4);
}

.trial-info {
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
}

.pricing-faq {
    padding: 80px 0;
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
}

.pricing-faq h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    color: var(--text-primary);
}

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

.faq-item {
    padding: 24px;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 4px 16px rgba(0, 212, 170, 0.1);
}

.faq-item h4 {
    color: var(--text-primary);
    margin-bottom: 12px;
    font-size: 1.125rem;
    font-weight: 600;
}

.faq-item p {
    color: var(--text-secondary);
}

/* FAQ Page Styles */
.faq-hero {
    padding: 100px 0 60px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--steel) 100%);
    color: white;
    text-align: center;
}

.faq-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.faq-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.faq-content {
    padding: 80px 0;
    background: white;
}

.faq-sections {
    max-width: 800px;
    margin: 0 auto;
}

.faq-section {
    margin-bottom: 60px;
}

.faq-section h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 32px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--accent);
}

.faq-section .faq-item {
    margin-bottom: 32px;
    padding: 24px;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--accent);
}

.faq-section .faq-item h3 {
    color: var(--primary);
    margin-bottom: 16px;
    font-size: 1.25rem;
    font-weight: 600;
}

.faq-section .faq-item p {
    line-height: 1.7;
    color: var(--text);
}

.faq-section .faq-item a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

.faq-section .faq-item a:hover {
    text-decoration: underline;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--bg-primary);
    text-align: center;
    border-top: 1px solid var(--border);
}

.contact-section h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.contact-section p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 60px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.contact-grid .single-contact {
    max-width: 400px;
    margin: 0 auto;
    grid-column: 1 / -1;
}

.contact-card {
    background: var(--bg-secondary);
    padding: 32px 24px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 4px 16px rgba(0, 212, 170, 0.1);
    border-color: var(--accent-primary);
}

.contact-card h4 {
    color: var(--text-primary);
    margin-bottom: 12px;
    font-size: 1.25rem;
    font-weight: 600;
}

.contact-card p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.contact-link {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-link:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    color: var(--text-primary);
    padding: 60px 0 30px 0;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 1.125rem;
    font-weight: 600;
}

.footer-section a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.2s ease;
}

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

.footer-logo-img {
    height: 80px;
    width: auto;
    margin-bottom: 16px;
}

.footer-section p {
    color: var(--text-muted);
    line-height: 1.6;
}

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

.footer-bottom p {
    color: var(--text-muted);
    margin: 0;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .pricing-hero h1,
    .faq-hero h1 {
        font-size: 2.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Email Capture / Waitlist Section */
.signup-section {
    padding: 100px 0;
    background: var(--bg-primary);
    color: var(--text-primary);
    text-align: center;
    border-top: 1px solid var(--border);
}

.signup-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.signup-section p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.signup-form {
    max-width: 400px;
    margin: 0 auto;
}

.signup-form input {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 16px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.signup-form input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
}

.signup-form button {
    width: 100%;
    background: var(--accent-primary);
    color: var(--bg-primary);
    padding: 16px 20px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.signup-form button:hover {
    background: #00B897;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.3);
}

.form-feedback {
    margin: 20px 0;
    padding: 16px;
    background: var(--bg-elevated);
    border-radius: 8px;
    color: var(--accent-primary);
    font-weight: 600;
    border: 1px solid var(--border);
}

.signup-privacy {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Focus states for accessibility */
.btn-primary:focus,
.btn-secondary:focus,
.nav-cta:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* Dashboard Preview Styles */
.dashboard-preview {
    margin-top: 60px;
    position: relative;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    z-index: 10;
}

.dashboard-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dashboard-overlay {
    position: absolute;
    bottom: -60px;
    right: 20px;
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border);
    max-width: 300px;
}

.pricing-preview h3 {
    margin: 0 0 16px 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
}

.pricing-tiers {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.tier {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid var(--border);
    position: relative;
}

.tier.popular {
    border-color: var(--accent);
    background: rgba(224, 179, 84, 0.1);
}

.tier-name {
    font-weight: 500;
    color: var(--text);
}

.tier-price {
    font-weight: 600;
    color: var(--primary);
}

.tier-badge {
    position: absolute;
    top: -8px;
    right: 8px;
    background: var(--accent);
    color: white;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.pricing-cta {
    display: block;
    text-align: center;
    background: var(--primary);
    color: white;
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
}

.pricing-cta:hover {
    background: var(--steel);
    transform: translateY(-1px);
}

/* FAQ Expandable Content */
.faq-expandable {
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-expandable:hover {
    background: var(--hover);
}

.faq-expandable.active {
    background: var(--hover);
}

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

.faq-answer.active {
    max-height: 300px;
    padding: 16px 24px 24px 24px;
}

.faq-toggle {
    float: right;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.faq-toggle.active {
    transform: rotate(180deg);
}

/* Email Form Enhancement */
.success-message {
    background: var(--accent);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    margin-top: 16px;
    text-align: center;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.success-message.show {
    opacity: 1;
}

/* Enhanced Button States */
.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(224, 179, 84, 0.2);
}

.btn-secondary:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(13, 27, 42, 0.2);
}

.nav-cta:active {
    transform: translateY(0);
}

/* Mobile Dashboard Responsiveness */
@media (max-width: 768px) {
    .dashboard-overlay {
        position: static;
        margin-top: 20px;
        max-width: 100%;
    }
    
    .dashboard-preview {
        margin-top: 40px;
    }
    
    /* Enhanced mobile navigation */
    .nav-container {
        padding: 0 16px;
    }
    
    .logo-image {
        height: 32px;
    }
    
    /* Mobile hero adjustments */
    .hero {
        padding: 120px 0 140px 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 1.125rem;
        margin-bottom: 32px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 40px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 16px 24px;
        font-size: 16px;
    }
    
    /* Mobile features grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .feature-card {
        padding: 32px 24px;
        text-align: center;
    }
    
    /* Mobile pricing adjustments */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .pricing-card {
        margin: 0;
    }
    
    /* Mobile waitlist form */
    .waitlist-form {
        flex-direction: column;
        gap: 16px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .waitlist-input {
        width: 100%;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Mobile footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .footer-section h4 {
        margin-bottom: 16px;
    }
    
    /* Mobile FAQ improvements */
    .faq-sections {
        padding: 0 16px;
    }
    
    .faq-item {
        margin-bottom: 16px;
        padding: 20px 16px;
    }
    
    .faq-item h4 {
        font-size: 1rem;
        line-height: 1.4;
        padding-right: 40px;
    }
    
    .faq-answer {
        padding: 0 16px;
    }
    
    .faq-answer.active {
        padding: 16px;
        max-height: 500px;
    }
}

/* Chart container canvas styling for deployment */
.chart-container canvas {
    display: block !important;
    width: 800px !important;
    height: 400px !important;
    max-width: 100% !important;
    background: #0A0B0D !important;
    border-radius: 8px !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
    z-index: 1 !important;
}

/* Tablet responsiveness */
@media (max-width: 1024px) and (min-width: 769px) {
    .container {
        padding: 0 32px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .dashboard-overlay {
        max-width: 280px;
        right: 16px;
        bottom: -50px;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn-primary:hover,
    .btn-secondary:hover,
    .nav-cta:hover {
        transform: none;
    }
    
    .btn-primary:active,
    .btn-secondary:active {
        transform: scale(0.98);
    }
    
    .faq-expandable:hover {
        background: initial;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.testimonials-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 16px;
    font-weight: 700;
}

.testimonials-section .section-header p {
    font-size: 1.25rem;
    color: var(--text-muted);
}

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

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-content .stars {
    color: var(--accent);
    font-size: 1.25rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-content blockquote {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text);
    margin: 0 0 24px 0;
    font-style: italic;
    position: relative;
}

.testimonial-content blockquote::before {
    content: '"';
    font-size: 4rem;
    color: var(--accent);
    position: absolute;
    top: -20px;
    left: -10px;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent);
}

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

.author-info h4 {
    color: var(--primary);
    margin: 0 0 4px 0;
    font-size: 1rem;
    font-weight: 600;
}

.author-info p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.875rem;
}

/* Stats section styles removed as requested */

/* Mobile responsiveness for testimonials and stats */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 40px;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    .testimonial-content blockquote {
        font-size: 1rem;
    }
    
    /* Stats mobile styles removed */
    
    .testimonials-section h2 {
        font-size: 2rem;
    }
    
    .testimonials-section .section-header p {
        font-size: 1.125rem;
    }
}

/* Stats mobile styles removed */

/* Enhanced Feature Cards with Premium Graphics */
.premium-feature {
    position: relative;
    overflow: hidden;
}

.premium-feature .feature-icon {
    position: relative;
    z-index: 2;
}

.icon-background {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
}

.security-icon .icon-background {
    background: linear-gradient(135deg, #10b981, #059669);
}

.tracking-icon .icon-background {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.ai-icon .icon-background {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.reports-icon .icon-background {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.automation-icon .icon-background {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.optimization-icon .icon-background {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.feature-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 3;
}

.ai-badge {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.optimization-badge {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.feature-list span {
    background: var(--bg-light);
    color: var(--accent);
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
}

.feature-highlight {
    margin-top: 16px;
    padding: 8px 12px;
    background: linear-gradient(135deg, #fef3c7, #fed7aa);
    border-radius: 8px;
    text-align: center;
}

.highlight-text {
    color: #d97706;
    font-weight: 700;
    font-size: 0.9rem;
}

.feature-stats {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.feature-stats span {
    background: var(--primary);
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Enhanced Hero Section Styles */
.hero-primary-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.hero-primary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.hero-primary-btn:hover::before {
    left: 100%;
}

.hero-secondary-btn {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-indicators {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

.trust-item svg {
    color: var(--accent);
}

.trust-separator {
    color: rgba(255, 255, 255, 0.5);
}

/* Dashboard Preview Mockup - DISABLED (conflicting with main preview) */

.dashboard-mockup {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
}

.mockup-header {
    background: #f8fafc;
    padding: 12px;
    border-bottom: 1px solid #e2e8f0;
}

.mockup-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.nav-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e2e8f0;
}

.nav-dots span:first-child {
    background: #ef4444;
}

.nav-dots span:nth-child(2) {
    background: #f59e0b;
}

.nav-dots span:last-child {
    background: #10b981;
}

.nav-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
}

.user-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent);
}

.mockup-content {
    padding: 20px;
}

.wealth-summary {
    margin-bottom: 20px;
}

.summary-card {
    background: var(--bg-light);
    padding: 16px;
    border-radius: 12px;
}

.card-title {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.card-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.card-change {
    font-size: 0.875rem;
    font-weight: 600;
}

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

.portfolio-chart {
    height: 120px;
    background: #f8fafc;
    border-radius: 8px;
    padding: 16px;
    position: relative;
}

.chart-placeholder {
    height: 100%;
    position: relative;
}

.chart-line {
    position: absolute;
    top: 20%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), #06b6d4);
    border-radius: 1px;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 8px;
    height: 100%;
    padding-top: 20px;
}

.bar {
    flex: 1;
    background: linear-gradient(180deg, var(--accent), #06b6d4);
    border-radius: 2px 2px 0 0;
    min-height: 20px;
}

/* Enhanced animations */
.premium-feature:hover .icon-background {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.premium-feature:hover .feature-badge {
    transform: scale(1.05);
    transition: transform 0.2s ease;
}

.dashboard-mockup:hover {
    transform: perspective(1000px) rotateY(-12deg) rotateX(3deg) scale(1.02);
    transition: transform 0.3s ease;
}

/* Floating animations - DISABLED to fix dashboard preview visibility */
@keyframes float {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(-5px) translateX(0px); }
}

/* Success metrics animation */
@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Stat number animation removed */

/* Testimonial card hover effects */
.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.testimonial-card:hover .stars {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}

/* Progressive loading animation for testimonials */
.testimonial-card:nth-child(1) {
    animation-delay: 0.1s;
}

.testimonial-card:nth-child(2) {
    animation-delay: 0.3s;
}

.testimonial-card:nth-child(3) {
    animation-delay: 0.5s;
}

/* Additional visual enhancements */
.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), #06b6d4);
    margin: 16px auto 0;
    border-radius: 2px;
}

/* Gradient text effects */
.gradient-text {
    background: linear-gradient(135deg, var(--accent), #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Interactive feature icons */
.feature-icon:hover {
    transform: scale(1.1) rotate(5deg);
    transition: transform 0.3s ease;
}

/* Pulse animation for important stats */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Stat hover animation removed */

/* Success Stories Section */
.success-stories {
    padding: 80px 0;
    background: white;
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.success-card {
    background: var(--bg-light);
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.success-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), #06b6d4);
}

.success-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #06b6d4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
}

.success-metric {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    line-height: 1;
}

.success-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 20px;
}

.success-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    padding: 0 16px;
}

.success-description::before {
    content: '"';
    font-size: 3rem;
    color: var(--accent);
    position: absolute;
    top: -10px;
    left: 0;
    opacity: 0.3;
}

.success-description::after {
    content: '"';
    font-size: 3rem;
    color: var(--accent);
    position: absolute;
    bottom: -40px;
    right: 0;
    opacity: 0.3;
}

.success-author {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* Mobile responsiveness for success stories */
@media (max-width: 768px) {
    .success-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 40px;
    }
    
    .success-card {
        padding: 32px 24px;
    }
    
    .success-metric {
        font-size: 2.5rem;
    }
    
    .success-stories h2 {
        font-size: 2rem;
    }
}

.dashboard-preview {
    animation: float 6s ease-in-out infinite;
}

/* Mobile adjustments for enhanced features */
@media (max-width: 768px) {
    .feature-badge {
        position: static;
        display: inline-block;
        margin-top: 12px;
    }
    
    .feature-list {
        justify-content: center;
    }
    
    .feature-stats {
        justify-content: center;
    }
}

/* Questions Section */
.questions-wrap {
    padding: 80px 0;
    background: var(--bg-light);
    text-align: center;
}

.questions-wrap h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.questions-wrap p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.questions-wrap .actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.questions-wrap .btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.questions-wrap .btn-primary {
    background: var(--primary);
    color: white;
}

.questions-wrap .btn-primary:hover {
    background: var(--steel);
    transform: translateY(-2px);
}

.questions-wrap .btn-secondary {
    background: var(--accent);
    color: var(--primary);
}

.questions-wrap .btn-secondary:hover {
    background: #d4a147;
    transform: translateY(-2px);
}

.questions-wrap .btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.questions-wrap .btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Mobile questions section */
@media (max-width: 768px) {
    .questions-wrap .actions {
        flex-direction: column;
        align-items: center;
    }
    
    .questions-wrap .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* New Dark Theme Styles for Enhanced Marketing Page */

/* Hero Section */
.hero-section {
    background: var(--bg-gradient);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    margin-bottom: 60px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #E5E7EB;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
    font-weight: 400;
}

.btn-primary-large {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--zeinto-blue-hover) 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.2);
}

.btn-primary-large:hover {
    background: linear-gradient(135deg, var(--zeinto-blue-hover) 0%, var(--accent-primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
}

.cta-note {
    color: var(--text-muted);
    font-size: 14px;
}

/* Dashboard Preview */
.dashboard-preview {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.dashboard-container {
    position: relative;
    max-width: 900px;
    width: 100%;
}

.dashboard-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
    border: 1px solid var(--border);
    background: var(--bg-secondary);
}

.dashboard-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.data-point {
    background: var(--bg-elevated);
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.data-point .label {
    color: var(--text-muted);
    font-size: 12px;
    margin-bottom: 4px;
}

.data-point .value {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 18px;
}

.data-point .value.green {
    color: var(--accent-primary);
}

/* Security Section */
.security-section {
    background: var(--bg-secondary);
    padding: 100px 0;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.security-card {
    background: var(--bg-elevated);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
}

.security-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.security-icon {
    color: var(--accent-primary);
    margin-bottom: 24px;
}

.security-card h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
}

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

/* Features Section */
.features-section {
    background: var(--bg-primary);
    padding: 100px 0;
}

.features-showcase {
    margin-top: 60px;
}

.feature-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

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

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

.feature-image {
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid var(--border);
}

.feature-content h3 {
    color: var(--text-primary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.feature-content p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.feature-content ul {
    list-style: none;
    margin-bottom: 24px;
}

.feature-content li {
    color: var(--text-secondary);
    margin-bottom: 8px;
    position: relative;
    padding-left: 24px;
}

.feature-content li:before {
    content: "✓";
    color: var(--accent-primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.example-note {
    background: var(--bg-elevated);
    padding: 16px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-primary);
    margin-top: 20px;
}

.example-note strong {
    color: var(--text-primary);
}

/* AI Import Demo */
.ai-import-demo {
    text-align: center;
}

.portfolio-entry {
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 24px;
    background: var(--background);
}

.portfolio-entry svg {
    color: var(--primary);
    margin-bottom: 16px;
}

.portfolio-entry p {
    color: var(--text-muted);
}

.ai-processing {
    background: var(--bg-elevated);
    padding: 24px;
    border-radius: 12px;
}

.processing-steps .step {
    text-align: left;
    padding: 8px 0;
    color: var(--text-muted);
}

.processing-steps .step.completed {
    color: var(--accent-primary);
}

.processing-steps .step.active {
    color: var(--text-primary);
}

/* Portfolio Demo */
.portfolio-demo {
    text-align: center;
}

.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.mini-card {
    background: var(--bg-elevated);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mini-card .card-label {
    color: var(--text-muted);
    font-size: 12px;
    margin-bottom: 8px;
}

.mini-card .card-value {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 4px;
}

.mini-card .card-change {
    font-size: 14px;
}

.mini-card .card-change.positive {
    color: var(--accent-primary);
}

.allocation-chart {
    height: 200px;
    background: var(--bg-elevated);
    border-radius: 12px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Tax Tracking Demo */
.tax-tracking-demo {
    max-width: 400px;
    margin: 0 auto;
}

.property-card {
    background: var(--bg-elevated);
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
}

.property-header {
    background: var(--bg-primary);
    padding: 20px;
    border-bottom: 1px solid var(--border);
}

.property-header h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 4px;
}

.property-type {
    color: var(--text-muted);
    font-size: 14px;
}

.tax-details {
    padding: 20px;
}

.tax-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.tax-line.total {
    border-top: 1px solid var(--border);
    padding-top: 12px;
    font-weight: 600;
    color: var(--text-primary);
}

/* Why Zeinto Section */
.why-zeinto-section {
    background: var(--bg-secondary);
    padding: 100px 0;
}

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

.why-card {
    background: var(--bg-elevated);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.why-icon {
    color: var(--accent-primary);
    margin-bottom: 24px;
}

.why-card h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.why-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--bg-primary);
    padding: 100px 0;
}

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

.testimonial-card {
    background: var(--bg-secondary);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-content {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 32px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-name {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 4px;
}

.author-title {
    color: var(--text-muted);
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    background: var(--bg-gradient);
    padding: 100px 0;
    text-align: center;
}

.cta-content h2 {
    color: var(--text-primary);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 1.25rem;
    margin-bottom: 40px;
}

.cta-buttons {
    margin-bottom: 32px;
}

.cta-details {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.detail-item {
    color: var(--text-muted);
    font-size: 14px;
}

/* Footer */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
    padding: 60px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-section p, .footer-section li {
    color: var(--text-secondary);
    margin-bottom: 8px;
}

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

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-logo img {
    height: 40px;
    margin-bottom: 16px;
}

.footer-contact a {
    color: var(--accent-primary);
}

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

.footer-bottom p {
    color: var(--text-muted);
}

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

.section-header h2 {
    color: var(--text-primary);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .feature-highlight {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .dashboard-cards {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cta-details {
        flex-direction: column;
        gap: 16px;
    }
}

/* Policy Page Styles */
.policy-section {
    padding: 120px 0 80px;
    min-height: 100vh;
    background: #ffffff !important;
    color: #333333 !important;
}

/* Override dark theme for policy pages */
body.policy-page {
    background: #ffffff !important;
    color: #333333 !important;
}

body.policy-page .navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

body.policy-page .nav-menu a,
body.policy-page .nav-links a {
    color: #333333 !important;
}

body.policy-page .nav-menu a:hover,
body.policy-page .nav-links a:hover {
    color: var(--zeinto-navy) !important;
}

body.policy-page .logo-text {
    color: var(--zeinto-navy) !important;
}

body.policy-page .footer {
    background: #f8f9fa !important;
    color: #333333 !important;
}

body.policy-page .footer h3,
body.policy-page .footer h4 {
    color: var(--zeinto-navy) !important;
}

body.policy-page .footer a {
    color: #666666 !important;
}

body.policy-page .footer a:hover {
    color: var(--zeinto-navy) !important;
}

body.policy-page .btn-signin {
    background: var(--zeinto-navy) !important;
    color: white !important;
}

/* Fix logo sizing on policy pages to match rest of site */
body.policy-page .logo-image {
    height: 80px !important;
    width: auto !important;
}

/* Mobile logo sizing for policy pages */
@media (max-width: 768px) {
    body.policy-page .logo-image {
        height: 32px !important;
    }
}

.policy-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.policy-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--zeinto-navy);
    margin-bottom: 20px;
}

.policy-date {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
    font-weight: 500;
}

.policy-intro {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-section-item {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.policy-section-item:last-child {
    border-bottom: none;
}

.policy-section-item h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--zeinto-navy);
    margin-bottom: 25px;
    border-left: 4px solid var(--zeinto-gold);
    padding-left: 20px;
}

.policy-section-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--zeinto-navy);
    margin: 25px 0 15px 0;
}

.policy-section-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.policy-section-item ul {
    margin: 15px 0;
    padding-left: 25px;
}

.policy-section-item li {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 10px;
}

.policy-section-item li strong {
    color: var(--zeinto-navy);
    font-weight: 600;
}

.policy-footer {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #eee;
}

.policy-footer p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.policy-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.policy-actions .btn-primary,
.policy-actions .btn-secondary {
    padding: 12px 30px;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.policy-actions .btn-primary {
    background: var(--zeinto-gold);
    color: white;
}

.policy-actions .btn-primary:hover {
    background: var(--zeinto-gold-hover);
    transform: translateY(-2px);
}

.policy-actions .btn-secondary {
    background: transparent;
    color: var(--zeinto-navy);
    border: 2px solid var(--zeinto-navy);
}

.policy-actions .btn-secondary:hover {
    background: var(--zeinto-navy);
    color: white;
}

/* Mobile styles for policy page */
@media (max-width: 768px) {
    .policy-header h1 {
        font-size: 2.2rem;
    }
    
    .policy-section-item h2 {
        font-size: 1.6rem;
    }
    
    .policy-section-item h3 {
        font-size: 1.2rem;
    }
    
    .policy-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .policy-actions .btn-primary,
    .policy-actions .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(13, 27, 42, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid #E0B354;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-text h4 {
    color: #F9FAFB;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.cookie-text p {
    color: #D1D5DB;
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.btn-primary-small,
.btn-secondary-small {
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary-small {
    background: #E0B354;
    color: white;
}

.btn-primary-small:hover {
    background: #D4A647;
    transform: translateY(-1px);
}

.btn-secondary-small {
    background: transparent;
    color: #D1D5DB;
    border: 1px solid #6B7280;
}

.btn-secondary-small:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #9CA3AF;
    color: #F9FAFB;
}

.cookie-policy-link {
    color: #E0B354;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.cookie-policy-link:hover {
    color: #D4A647;
    text-decoration: underline;
}

/* Mobile cookie banner */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cookie-actions {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    
    .btn-primary-small,
    .btn-secondary-small {
        width: 100%;
        max-width: 200px;
    }
}