/*
 * eBiiz Pro Design System
 * Modern, Professional SaaS Landing Page
 * Inspired by premium POS/SaaS platforms
 */

/* ===== CSS VARIABLES - DARK THEME (Default) ===== */
:root {
    /* Brand Colors - Premium Sky Blue/Cyan */
    --primary: #0ea5e9;
    --primary-dark: #0284c7;
    --primary-light: #38bdf8;
    --primary-50: rgba(14, 165, 233, 0.1);
    --primary-glow: rgba(14, 165, 233, 0.4);
    
    /* Secondary - Dark Theme */
    --secondary: #0f172a;
    --secondary-light: #1e293b;
    --secondary-dark: #020617;
    
    /* Accent Colors */
    --accent: #22d3ee;
    --accent-green: #10b981;
    --accent-orange: #f97316;
    --accent-pink: #ec4899;
    
    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    /* Semantic */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    
    /* Theme-specific colors */
    --bg-body: var(--secondary);
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    --text-primary: var(--white);
    --text-secondary: var(--gray-300);
    --text-muted: var(--gray-400);
    --border-color: rgba(255, 255, 255, 0.1);
    --nav-bg: rgba(15, 23, 42, 0.8);
    --footer-bg: var(--secondary-dark);
    
    /* Typography */
    --font-family: 'Inter', system-ui, -apple-system, sans-serif;
    
    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    --text-7xl: 4.5rem;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 40px var(--primary-glow);
    
    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Container */
    --container-max: 1280px;
    --container-padding: 24px;
}

/* ===== LIGHT THEME ===== */
[data-theme="light"] {
    /* Light theme backgrounds */
    --bg-body: #f8fafc;
    --bg-card: #ffffff;
    --bg-card-hover: #f1f5f9;
    --bg-input: #ffffff;
    --bg-hero: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    
    /* Light theme text */
    --text-primary: #0f172a;
    --text-secondary: #334155;
    --text-muted: #64748b;
    
    /* Light theme borders */
    --border-color: #e2e8f0;
    --border-hover: #cbd5e1;
    
    /* Light theme nav/footer */
    --nav-bg: rgba(255, 255, 255, 0.95);
    --footer-bg: #1e293b;
    
    /* Light theme glass effect */
    --glass-bg: rgba(0, 0, 0, 0.02);
    --glass-border: rgba(0, 0, 0, 0.08);
    
    /* Light theme shadows - more visible */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.12);
    
    /* Override grays */
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #334155;
    --gray-400: #475569;
    --gray-500: #64748b;
    --gray-600: #94a3b8;
    --gray-700: #e2e8f0;
    --gray-800: #f1f5f9;
    --gray-900: #f8fafc;
    
    /* Secondary backgrounds */
    --secondary: #f8fafc;
    --secondary-light: #ffffff;
}

/* ===== LIGHT THEME ELEMENT OVERRIDES ===== */
/* Navigation logo text - must be dark on light bg */
[data-theme="light"] .nav-logo-text {
    color: var(--text-primary);
}

/* Mobile nav toggle - must be dark on light bg */
[data-theme="light"] .nav-mobile-toggle {
    color: var(--text-primary);
}

/* Hero floating elements - darker background for contrast */
[data-theme="light"] .hero-float {
    background: #ffffff;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .hero-float-value {
    color: var(--text-primary);
}

[data-theme="light"] .hero-float-label {
    color: var(--text-muted);
}

/* Hero stat card values - must be readable on light */
[data-theme="light"] .hero-stat-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
}

[data-theme="light"] .hero-stat-card-value {
    color: var(--text-primary);
}

[data-theme="light"] .hero-stat-card-label {
    color: var(--text-muted);
}

/* Hero dashboard - lighter for visibility */
[data-theme="light"] .hero-dashboard {
    background: #ffffff;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .hero-dashboard-chart {
    background: var(--bg-card-hover);
    border-color: var(--border-color);
}

[data-theme="light"] .hero-dashboard-chart-title {
    color: var(--text-muted);
}

/* Module cards - text must be dark */
[data-theme="light"] .module-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
}

[data-theme="light"] .module-card:hover {
    background: var(--bg-card-hover);
}

[data-theme="light"] .module-card h3 {
    color: var(--text-primary);
}

[data-theme="light"] .module-card p {
    color: var(--text-secondary);
}

/* Step cards - text must be dark */
[data-theme="light"] .step-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
}

[data-theme="light"] .step-card h3 {
    color: var(--text-primary);
}

[data-theme="light"] .step-card p {
    color: var(--text-secondary);
}

/* Pricing toggle - active state dark */
[data-theme="light"] .pricing-toggle span.active {
    color: var(--text-primary);
}

/* Feature cards - ensure contrast */
[data-theme="light"] .feature-card {
    background: #ffffff;
}

[data-theme="light"] .feature-card:hover {
    background: var(--bg-card-hover);
}

/* Testimonial cards */
[data-theme="light"] .testimonial-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
}

[data-theme="light"] .testimonial-text {
    color: var(--text-secondary);
}

[data-theme="light"] .testimonial-author-name {
    color: var(--text-primary);
}

/* FAQ section */
[data-theme="light"] .faq-item {
    background: #ffffff;
    border: 1px solid var(--border-color);
}

[data-theme="light"] .faq-question {
    color: var(--text-primary);
}

[data-theme="light"] .faq-answer {
    color: var(--text-secondary);
}

/* Button outlines - darker for visibility */
[data-theme="light"] .btn-outline-white {
    color: var(--primary);
    border: 1px solid var(--primary);
}

[data-theme="light"] .btn-outline-white:hover {
    background: rgba(14, 165, 233, 0.1);
    border-color: var(--primary-dark);
}

/* Secondary button - more visible */
[data-theme="light"] .btn-secondary {
    background: #ffffff;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

[data-theme="light"] .btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
}

/* Hero badge - lighter background */
[data-theme="light"] .hero-badge {
    background: #ffffff;
    border-color: var(--border-color);
    color: var(--text-secondary);
}

/* Clients section label */
[data-theme="light"] .clients-label {
    color: var(--text-muted);
}

/* Client logo text */
[data-theme="light"] .client-logo-text {
    color: var(--text-secondary);
}

/* Section headers */
[data-theme="light"] .section-label {
    color: var(--primary);
}

/* Pricing cards - solid white background */
[data-theme="light"] .pricing-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
}

[data-theme="light"] .pricing-card.featured {
    background: linear-gradient(145deg, rgba(14, 165, 233, 0.08) 0%, rgba(34, 211, 238, 0.05) 100%);
}

[data-theme="light"] .pricing-card:hover {
    background: var(--bg-card-hover);
}

/* Pricing toggle switch background */
[data-theme="light"] .pricing-switch {
    background: var(--bg-card-hover);
    border: 1px solid var(--border-color);
}

/* Integration cards */
[data-theme="light"] .integration-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
}

/* Steps section cards */
[data-theme="light"] .steps-grid::before {
    background: var(--border-color);
}

/* Hero background adjustments for light mode */
[data-theme="light"] .hero-bg-gradient {
    background: radial-gradient(circle at 30% 40%, rgba(14, 165, 233, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(34, 211, 238, 0.05) 0%, transparent 40%);
}

/* Ghost button for light theme */
[data-theme="light"] .btn-ghost {
    color: var(--text-secondary);
}

[data-theme="light"] .btn-ghost:hover {
    color: var(--text-primary);
    background: rgba(0, 0, 0, 0.04);
}

/* ===== FEATURE HIGHLIGHT - LIGHT THEME ===== */
[data-theme="light"] .feature-highlight-title {
    color: var(--text-primary);
}

[data-theme="light"] .feature-highlight-text {
    color: var(--text-secondary);
}

[data-theme="light"] .feature-highlight-label {
    color: var(--primary);
}

[data-theme="light"] .feature-list-item span {
    color: var(--text-secondary);
}

[data-theme="light"] .feature-image-wrapper {
    background: linear-gradient(145deg, rgba(14, 165, 233, 0.05), rgba(0, 0, 0, 0.02));
    border-color: var(--border-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* ===== PRIVACY PAGE STYLES ===== */
.privacy-hero {
    position: relative;
    padding: 160px 0 80px;
    overflow: hidden;
}

.privacy-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.privacy-hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 40%, rgba(14, 165, 233, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(34, 211, 238, 0.1) 0%, transparent 40%);
}

.privacy-hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.privacy-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 24px;
}

.privacy-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    color: var(--primary-light);
    margin-bottom: 24px;
}

.privacy-title {
    font-size: var(--text-5xl);
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.privacy-subtitle {
    font-size: var(--text-xl);
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.privacy-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.privacy-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.privacy-content {
    padding: 80px 24px;
}

.privacy-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
}

.privacy-toc {
    position: relative;
}

.toc-sticky {
    position: sticky;
    top: 100px;
}

.toc-title {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.toc-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.toc-link {
    display: block;
    padding: 10px 16px;
    font-size: var(--text-sm);
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: var(--radius-md);
    border-left: 2px solid transparent;
    transition: all 0.2s ease;
}

.toc-link:hover {
    color: var(--primary);
    background: var(--bg-card);
    border-left-color: var(--primary);
}

.toc-link.active {
    color: var(--primary);
    background: rgba(14, 165, 233, 0.1);
    border-left-color: var(--primary);
}

.privacy-main {
    max-width: 800px;
}

.policy-section {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border-color);
}

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

.policy-section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.policy-section-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    color: var(--primary);
}

.policy-section h2 {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--text-primary);
}

.policy-section h3 {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin: 24px 0 12px;
}

.policy-section p {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.policy-list {
    list-style: none;
    margin: 16px 0;
    padding: 0;
}

.policy-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.7;
}

.policy-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

.policy-highlight {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    margin: 20px 0;
}

.policy-highlight p {
    margin: 0;
    color: var(--text-primary);
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.right-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 20px;
    transition: all 0.3s ease;
}

.right-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.right-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: var(--radius-md);
    color: var(--primary);
    margin-bottom: 12px;
}

.right-card h4 {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.right-card p {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin: 0;
}

.contact-cta {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(34, 211, 238, 0.05));
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 32px;
    text-align: center;
    margin-top: 48px;
}

.contact-cta h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

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

@media (max-width: 1024px) {
    .privacy-container {
        grid-template-columns: 1fr;
    }
    
    .privacy-toc {
        display: none;
    }
    
    .rights-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .privacy-hero {
        padding: 120px 0 60px;
    }
    
    .privacy-title {
        font-size: var(--text-3xl);
    }
    
    .privacy-meta {
        flex-direction: column;
        gap: 12px;
    }
}

/* Light theme overrides for privacy page */
[data-theme="light"] .privacy-hero-grid {
    background-image: linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
}

[data-theme="light"] .privacy-badge {
    background: #ffffff;
    border-color: var(--border-color);
}

[data-theme="light"] .policy-section-icon {
    background: #ffffff;
}

[data-theme="light"] .right-card {
    background: #ffffff;
}

[data-theme="light"] .policy-highlight {
    background: #ffffff;
}

[data-theme="light"] .contact-cta {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.08), rgba(34, 211, 238, 0.03));
}

/* ===== TERMS PAGE STYLES ===== */
.terms-hero {
    position: relative;
    padding: 160px 0 80px;
    overflow: hidden;
}

.terms-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.terms-hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 40%, rgba(14, 165, 233, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(34, 211, 238, 0.1) 0%, transparent 40%);
}

.terms-hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.terms-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 24px;
}

.terms-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    color: var(--primary-light);
    margin-bottom: 24px;
}

.terms-title {
    font-size: var(--text-5xl);
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.terms-subtitle {
    font-size: var(--text-xl);
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.terms-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.terms-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.terms-content {
    padding: 80px 24px;
}

.terms-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
}

.terms-toc {
    position: relative;
}

.terms-main {
    max-width: 800px;
}

.terms-section {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border-color);
}

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

.terms-section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.terms-section-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    color: var(--primary);
}

.terms-section h2 {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--text-primary);
}

.terms-section h3 {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin: 24px 0 12px;
}

.terms-section p {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.terms-list {
    list-style: none;
    margin: 16px 0;
    padding: 0;
}

.terms-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.7;
}

.terms-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

.terms-highlight {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    margin: 20px 0;
}

.terms-highlight p {
    margin: 0;
    color: var(--text-primary);
}

.terms-warning {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    margin: 20px 0;
}

.terms-warning p {
    color: #ef4444;
    margin: 0;
}

@media (max-width: 1024px) {
    .terms-container {
        grid-template-columns: 1fr;
    }
    
    .terms-toc {
        display: none;
    }
}

@media (max-width: 768px) {
    .terms-hero {
        padding: 120px 0 60px;
    }
    
    .terms-title {
        font-size: var(--text-3xl);
    }
    
    .terms-meta {
        flex-direction: column;
        gap: 12px;
    }
}

/* Light theme overrides for terms page */
[data-theme="light"] .terms-hero-grid {
    background-image: linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
}

[data-theme="light"] .terms-badge {
    background: #ffffff;
    border-color: var(--border-color);
}

[data-theme="light"] .terms-section-icon {
    background: #ffffff;
}

[data-theme="light"] .terms-highlight {
    background: #ffffff;
}

/* ===== ADDITIONAL PRIVACY/TERMS COMPONENTS ===== */
/* Info Card */
.info-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    margin: 24px 0;
}

.info-card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(14, 165, 233, 0.1);
    border-radius: var(--radius-md);
    color: var(--primary);
}

.info-card-content h4 {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.info-card-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card-content li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.info-card-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: 600;
}

[data-theme="light"] .info-card {
    background: #ffffff;
}

/* Use Grid */
.use-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 24px 0;
}

.use-item {
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.use-item:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.use-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: var(--radius-md);
    color: var(--primary);
    margin-bottom: 16px;
}

.use-item h4 {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.use-item p {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin: 0;
}

[data-theme="light"] .use-item {
    background: #ffffff;
}

@media (max-width: 768px) {
    .use-grid {
        grid-template-columns: 1fr;
    }
}

/* Highlight Box */
.highlight-box {
    display: flex;
    gap: 16px;
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    margin: 20px 0;
}

.highlight-box svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.highlight-box strong {
    display: block;
    font-size: var(--text-base);
    font-weight: 600;
    margin-bottom: 6px;
}

.highlight-box p {
    font-size: var(--text-sm);
    margin: 0;
    line-height: 1.6;
}

.highlight-green {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--accent-green);
}

.highlight-green strong,
.highlight-green p {
    color: var(--accent-green);
}

.highlight-blue {
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.2);
    color: var(--primary);
}

.highlight-blue strong,
.highlight-blue p {
    color: var(--primary);
}

.highlight-orange {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    color: var(--warning);
}

.highlight-orange strong,
.highlight-orange p {
    color: var(--warning);
}

/* TOC CTA */
.toc-cta {
    margin-top: 32px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(34, 211, 238, 0.05));
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
}

.toc-cta h4 {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.toc-cta p {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.toc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: var(--primary);
    color: var(--white);
    font-size: var(--text-sm);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.toc-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

[data-theme="light"] .toc-cta {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.05), rgba(34, 211, 238, 0.02));
}

/* Privacy Article */
.privacy-article {
    max-width: 100%;
}

.privacy-custom-content {
    line-height: 1.8;
    color: var(--text-secondary);
}

.privacy-custom-content h1,
.privacy-custom-content h2,
.privacy-custom-content h3 {
    color: var(--text-primary);
    margin-top: 32px;
    margin-bottom: 16px;
}

.privacy-custom-content ul,
.privacy-custom-content ol {
    padding-left: 24px;
    margin: 16px 0;
}

.privacy-custom-content li {
    margin-bottom: 8px;
}

.privacy-custom-content a {
    color: var(--primary);
    text-decoration: underline;
}

.privacy-custom-content a:hover {
    color: var(--primary-dark);
}

/* ===== RESET ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-body);
    overflow-x: hidden;
    transition: background-color var(--transition-slow), color var(--transition-slow);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* ===== UTILITIES ===== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

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

.glow {
    box-shadow: var(--shadow-glow);
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: background-color var(--transition-slow);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

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

.nav-logo img {
    height: 36px;
    width: auto;
}

.nav-logo-text {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
}

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

.nav-link {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition-fast);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Theme Toggle Button */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.theme-toggle:hover {
    background: var(--primary-alpha);
    border-color: var(--primary);
    color: var(--primary);
}

/* Show sun icon in dark mode, moon icon in light mode */
.theme-icon-light {
    display: none;
}

[data-theme="light"] .theme-icon-dark {
    display: none;
}

[data-theme="light"] .theme-icon-light {
    display: block;
}

/* Mobile theme row */
.nav-mobile-theme {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-3) 0;
    border-top: 1px solid var(--border-color);
    margin-top: var(--space-2);
}

.nav-mobile-theme span {
    color: var(--text-secondary);
    font-size: var(--text-sm);
}

.theme-toggle-mobile {
    width: 44px;
    height: 44px;
}

.nav-mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.nav-mobile-toggle:hover {
    background: var(--glass-bg);
}

.nav-mobile-toggle svg {
    width: 24px;
    height: 24px;
}

/* Mobile Navigation */
.nav-mobile {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-body);
    padding: var(--space-6);
    z-index: 999;
    transition: background-color var(--transition-slow);
}

.nav-mobile.active {
    display: block;
}

.nav-mobile-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.nav-mobile-link {
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--text-secondary);
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--border-color);
}

.nav-mobile-toggle {
    color: var(--text-primary);
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
    
    .nav-mobile-toggle {
        display: flex;
    }
}

@media (max-width: 640px) {
    /* Keep nav-actions visible on mobile for Login & Start Free Trial */
    .nav-actions {
        gap: 6px;
    }
    
    .nav-actions .theme-toggle {
        width: 34px;
        height: 34px;
    }
    
    .nav-actions .theme-toggle svg {
        width: 16px;
        height: 16px;
    }
    
    .nav-actions .btn-login-header {
        padding: 6px 10px;
        font-size: 12px;
        gap: 4px;
    }
    
    .nav-actions .btn-login-header svg {
        width: 14px;
        height: 14px;
    }
    
    .nav-actions .btn-primary {
        padding: 6px 10px;
        font-size: 12px;
    }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: var(--text-sm);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-sm {
    padding: 8px 16px;
    font-size: var(--text-xs);
    border-radius: var(--radius-md);
}

.btn-lg {
    padding: 16px 32px;
    font-size: var(--text-base);
}

.btn-xl {
    padding: 18px 40px;
    font-size: var(--text-lg);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(14, 165, 233, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.5);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
}

.btn-ghost:hover {
    color: var(--text-primary);
    background: var(--bg-card);
}

/* Login button in header - colorful and visible */
.btn-login-header {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--white) !important;
    font-weight: 600;
    border-radius: 8px;
    padding: 8px 18px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.25);
}

.btn-login-header:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35);
}

.btn-login-header svg {
    width: 18px;
    height: 18px;
}

.btn-white {
    background: var(--white);
    color: var(--secondary);
}

.btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn svg {
    width: 18px;
    height: 18px;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

/* Background Effects */
.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-bg-gradient {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 40%, rgba(14, 165, 233, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(34, 211, 238, 0.1) 0%, transparent 40%);
    animation: gradient-shift 20s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-5%, 5%) rotate(5deg); }
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(14, 165, 233, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14, 165, 233, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

[data-theme="light"] .hero-bg-grid {
    background-image: 
        linear-gradient(rgba(14, 165, 233, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14, 165, 233, 0.08) 1px, transparent 1px);
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
    font-size: var(--text-6xl);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.hero-title-highlight {
    position: relative;
    display: inline-block;
}

.hero-title-highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    height: 12px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    opacity: 0.3;
    border-radius: 4px;
    z-index: -1;
}

.hero-subtitle {
    font-size: var(--text-xl);
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

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

.hero-stats {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-stat {
    text-align: left;
}

.hero-stat-value {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--text-primary);
}

.hero-stat-label {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-top: 4px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-dashboard {
    position: relative;
    background: var(--bg-card);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--border-color);
    padding: 4px;
    box-shadow: var(--shadow-xl);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: var(--transition-slow);
}

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

.hero-dashboard-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--glass-border);
}

.hero-dashboard-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.hero-dashboard-dot.red { background: #ef4444; }
.hero-dashboard-dot.yellow { background: #f59e0b; }
.hero-dashboard-dot.green { background: #10b981; }

.hero-dashboard-content {
    padding: 20px;
    min-height: 400px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 16px;
}

.hero-dashboard-chart {
    background: var(--glass-bg);
    border-radius: var(--radius-lg);
    padding: 20px;
    border: 1px solid var(--glass-border);
}

.hero-dashboard-chart-title {
    font-size: var(--text-sm);
    color: var(--gray-400);
    margin-bottom: 16px;
}

.hero-chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 180px;
}

.hero-chart-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 4px 4px 0 0;
    animation: chart-grow 1s ease-out forwards;
    opacity: 0;
}

@keyframes chart-grow {
    from { height: 0; opacity: 0; }
    to { opacity: 1; }
}

.hero-chart-bar:nth-child(1) { animation-delay: 0.1s; }
.hero-chart-bar:nth-child(2) { animation-delay: 0.2s; }
.hero-chart-bar:nth-child(3) { animation-delay: 0.3s; }
.hero-chart-bar:nth-child(4) { animation-delay: 0.4s; }
.hero-chart-bar:nth-child(5) { animation-delay: 0.5s; }
.hero-chart-bar:nth-child(6) { animation-delay: 0.6s; }
.hero-chart-bar:nth-child(7) { animation-delay: 0.7s; }

.hero-dashboard-sidebar {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-stat-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 16px;
}

.hero-stat-card-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    font-size: 20px;
}

.hero-stat-card-icon.blue { background: rgba(14, 165, 233, 0.2); color: var(--primary-light); }
.hero-stat-card-icon.green { background: rgba(16, 185, 129, 0.2); color: var(--accent-green); }
.hero-stat-card-icon.orange { background: rgba(249, 115, 22, 0.2); color: var(--accent-orange); }

.hero-stat-card-value {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--white);
}

.hero-stat-card-label {
    font-size: var(--text-xs);
    color: var(--gray-500);
    margin-top: 4px;
}

.hero-stat-card-change {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: var(--text-xs);
    font-weight: 500;
    color: var(--accent-green);
    margin-top: 8px;
}

/* Floating Elements */
.hero-float {
    position: absolute;
    background: var(--secondary-light);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
    z-index: 10;
}

.hero-float-1 {
    top: 10%;
    left: -40px;
    animation-delay: 0s;
}

.hero-float-2 {
    bottom: 20%;
    right: -30px;
    animation-delay: 2s;
}

.hero-float-3 {
    top: 50%;
    right: -50px;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

.hero-float-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.hero-float-icon.purple { background: rgba(14, 165, 233, 0.2); color: var(--primary-light); }
.hero-float-icon.green { background: rgba(16, 185, 129, 0.2); color: var(--accent-green); }
.hero-float-icon.cyan { background: rgba(34, 211, 238, 0.2); color: var(--accent); }

.hero-float-text {
    font-size: var(--text-sm);
}

.hero-float-value {
    font-weight: 600;
    color: var(--white);
}

.hero-float-label {
    font-size: var(--text-xs);
    color: var(--gray-500);
}

/* ===== TRUSTED BY / CLIENTS ===== */
.clients {
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.clients-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    text-align: center;
}

.clients-label {
    font-size: var(--text-sm);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 32px;
}

.clients-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    opacity: 0.6;
    transition: var(--transition-base);
}

.clients-logos:hover {
    opacity: 0.9;
}

.client-logo {
    height: 32px;
    width: auto;
    opacity: 0.7;
    transition: var(--transition-fast);
}

/* Dark theme: invert logos to white */
:root .client-logo {
    filter: brightness(0) invert(1);
}

/* Light theme: keep logos dark/original */
[data-theme="light"] .client-logo {
    filter: brightness(0) invert(0);
}

.client-logo:hover {
    opacity: 1;
}

.client-logo-text {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: -0.02em;
}

/* ===== SECTIONS ===== */
.section {
    padding: 100px 0;
    position: relative;
    background: var(--bg-body);
    transition: background-color var(--transition-slow);
}

.section-light {
    background: var(--bg-card);
}

.section-light h2,
.section-light h3 {
    color: var(--text-primary);
}

.section-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

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

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.section-title {
    font-size: var(--text-5xl);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.section-light .section-title {
    color: var(--text-primary);
}

.section-subtitle {
    font-size: var(--text-lg);
    line-height: 1.7;
    color: var(--text-secondary);
}

.section-light .section-subtitle {
    color: var(--text-secondary);
}

/* ===== FEATURES GRID ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    opacity: 0;
    transition: var(--transition-base);
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

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

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-50) 0%, rgba(34, 211, 238, 0.1) 100%);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary-light);
}

.feature-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.feature-card h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.6;
}

.feature-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--primary-light);
    margin-top: 20px;
    transition: var(--transition-fast);
}

.feature-card-link:hover {
    color: var(--accent);
    gap: 12px;
}

.feature-card-link svg {
    width: 16px;
    height: 16px;
}

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

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== MODULES SHOWCASE ===== */
.modules-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.module-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 28px;
    text-align: center;
    transition: var(--transition-base);
}

.module-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.module-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
}

.module-icon.purple { background: linear-gradient(135deg, rgba(14, 165, 233, 0.2) 0%, rgba(56, 189, 248, 0.2) 100%); }
.module-icon.green { background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(5, 150, 105, 0.2) 100%); }
.module-icon.cyan { background: linear-gradient(135deg, rgba(34, 211, 238, 0.2) 0%, rgba(6, 182, 212, 0.2) 100%); }
.module-icon.orange { background: linear-gradient(135deg, rgba(249, 115, 22, 0.2) 0%, rgba(234, 88, 12, 0.2) 100%); }
.module-icon.pink { background: linear-gradient(135deg, rgba(236, 72, 153, 0.2) 0%, rgba(219, 39, 119, 0.2) 100%); }
.module-icon.blue { background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(37, 99, 235, 0.2) 100%); }

.module-card h3 {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.module-card p {
    font-size: var(--text-sm);
    color: var(--gray-500);
}

@media (max-width: 1024px) {
    .modules-showcase {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

/* ===== STATS SECTION ===== */
.stats-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 1;
}

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

.stat-number {
    font-size: var(--text-5xl);
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.8);
}

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

/* ===== HOW IT WORKS ===== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 16.66%;
    right: 16.66%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    opacity: 0.3;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    font-size: var(--text-2xl);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 30px var(--primary-glow);
}

.step-card h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.step-card p {
    font-size: var(--text-base);
    color: var(--gray-400);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid::before {
        display: none;
    }
}

/* ===== PRICING ===== */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.pricing-toggle span {
    font-size: var(--text-base);
    color: var(--gray-400);
}

.pricing-toggle span.active {
    color: var(--white);
    font-weight: 600;
}

.pricing-switch {
    width: 56px;
    height: 28px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    position: relative;
    cursor: pointer;
}

.pricing-switch::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    transition: var(--transition-fast);
}

.pricing-switch.active::after {
    left: calc(100% - 23px);
}

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

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-2xl);
    padding: 40px;
    position: relative;
    transition: var(--transition-base);
}

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

.pricing-card.featured {
    background: linear-gradient(145deg, rgba(14, 165, 233, 0.15) 0%, rgba(34, 211, 238, 0.1) 100%);
    border-color: var(--primary);
    transform: scale(1.02);
}

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

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    font-size: var(--text-xs);
    font-weight: 600;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-name {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.pricing-description {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.pricing-price {
    margin-bottom: 32px;
}

.pricing-amount {
    font-size: var(--text-5xl);
    font-weight: 800;
    color: var(--text-primary);
}

.pricing-amount span {
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--text-secondary);
}

.pricing-features {
    margin-bottom: 32px;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

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

.pricing-feature svg {
    width: 20px;
    height: 20px;
    color: var(--accent-green);
    flex-shrink: 0;
}

.pricing-feature.disabled {
    color: var(--gray-600);
}

.pricing-feature.disabled svg {
    color: var(--gray-600);
}

.pricing-card .btn {
    width: 100%;
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }
    
    .pricing-card.featured {
        transform: none;
    }
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: var(--transition-base);
}

.testimonial-card:hover {
    background: var(--bg-card-hover);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-rating svg {
    width: 18px;
    height: 18px;
    color: #fbbf24;
}

.testimonial-text {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

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

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--white);
}

.testimonial-author strong {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-primary);
}

.testimonial-author span {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

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

@media (max-width: 640px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== FAQ ===== */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: var(--bg-card-hover);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px 20px;
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.7;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ===== CTA SECTION ===== */
.cta {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.cta-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

.cta-title {
    font-size: var(--text-5xl);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}

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

.cta-note {
    margin-top: 24px;
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
}

/* CTA buttons should always use white on blue bg - override light theme */
.cta .btn-white {
    background: var(--white);
    color: #0284c7;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.cta .btn-white:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta .btn-outline-white,
[data-theme="light"] .cta .btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.cta .btn-outline-white:hover,
[data-theme="light"] .cta .btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
    color: var(--white);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--footer-bg);
    padding: 80px 0 32px;
    border-top: 1px solid var(--border-color);
}

.footer-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 36px;
    width: auto;
}

.footer-logo-text {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--white);
}

.footer-description {
    font-size: var(--text-sm);
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-column h4 {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-size: var(--text-sm);
    color: var(--gray-400);
    transition: var(--transition-fast);
}

.footer-link:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition-fast);
}

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

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: span 2;
        max-width: none;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    :root {
        --text-6xl: 3rem;
        --text-5xl: 2.5rem;
        --text-7xl: 4rem;
    }
    
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        max-width: 640px;
        margin: 0 auto;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    :root {
        --text-6xl: 2.5rem;
        --text-5xl: 2rem;
        --text-4xl: 1.75rem;
        --container-padding: 20px;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .section-header {
        margin-bottom: 48px;
    }
    
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Stagger delays */
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }

/* ===== SCREENSHOT SHOWCASE ===== */
.showcase-wrapper {
    position: relative;
    padding: 40px;
    background: linear-gradient(135deg, var(--glass-bg) 0%, transparent 100%);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--glass-border);
}

.showcase-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
}

.showcase-image img {
    width: 100%;
    height: auto;
}

/* ===== INTEGRATIONS ===== */
.integrations-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.integration-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    color: var(--gray-300);
    transition: var(--transition-fast);
}

.integration-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.integration-badge img {
    width: 24px;
    height: 24px;
    border-radius: 4px;
}

/* ===== FEATURE HIGHLIGHTS ===== */
.feature-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 60px 0;
}

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

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

.feature-highlight-content {
    max-width: 520px;
}

.feature-highlight-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 16px;
}

.feature-highlight-title {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.feature-highlight-text {
    font-size: var(--text-lg);
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 32px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-list-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.feature-list-item svg {
    width: 22px;
    height: 22px;
    color: var(--accent-green);
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-list-item span {
    font-size: var(--text-base);
    color: var(--gray-300);
}

.feature-highlight-visual {
    position: relative;
}

.feature-image-wrapper {
    background: linear-gradient(145deg, var(--glass-bg) 0%, transparent 100%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    padding: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.feature-image-wrapper img {
    border-radius: var(--radius-lg);
    width: 100%;
}

@media (max-width: 1024px) {
    .feature-highlight {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-highlight.reverse {
        direction: ltr;
    }
    
    .feature-highlight-content {
        max-width: 100%;
        text-align: center;
    }
    
    .feature-list {
        align-items: center;
    }
}

/* ===== PRICING TOGGLE ===== */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.pricing-toggle span {
    font-size: var(--text-base);
    color: var(--gray-400);
    transition: color 0.2s ease;
}

.pricing-toggle span.active {
    color: var(--white);
    font-weight: 600;
}

.pricing-switch {
    width: 56px;
    height: 28px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-switch::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    background: var(--primary);
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: all 0.3s ease;
}

.pricing-switch.active::after {
    left: 30px;
}

/* ===== FAQ ===== */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(14, 165, 233, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: var(--text-lg);
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
}

.faq-question:hover {
    color: var(--primary-light);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    padding: 0 24px 24px;
    max-height: 500px;
}

.faq-answer {
    color: var(--text-secondary);
    font-size: var(--text-base);
    line-height: 1.7;
}
