/* ============================================
   Zatalog Website Styles
   Matching the app's Material 3 + Glassmorphism design
   ============================================ */

/* CSS Variables */
:root {
    /* Colors - matching app theme */
    --color-primary: #22c55e;
    --color-primary-dark: #16a34a;
    --color-secondary: #3b82f6;
    --color-accent-orange: #f97316;
    --color-accent-purple: #8b5cf6;
    --color-accent-teal: #14b8a6;
    --color-accent-pink: #ec4899;
    --color-gold: #fbbf24;
    
    /* Background spots - dark theme (default) */
    --spot-tl: rgba(139, 92, 246, 0.8);
    --spot-tr: rgba(59, 130, 246, 0.7);
    --spot-bl: rgba(20, 184, 166, 0.6);
    --spot-br: rgba(99, 102, 241, 0.7);
    
    /* Dark theme colors */
    --bg-primary: #0f0f0f;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #262626;
    --bg-glass: rgba(30, 30, 30, 0.6);
    --bg-glass-hover: rgba(40, 40, 40, 0.7);
    
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-tertiary: rgba(255, 255, 255, 0.5);
    
    /* Honeycomb */
    --honeycomb-color: rgba(255, 255, 255, 0.08);
    --honeycomb-stroke: rgba(255, 255, 255, 0.12);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 40px rgba(34, 197, 94, 0.15);
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Noto Sans SC', sans-serif;
}

/* Light theme */
@media (prefers-color-scheme: light) {
    :root {
        --spot-tl: rgba(139, 92, 246, 0.6);
        --spot-tr: rgba(59, 130, 246, 0.5);
        --spot-bl: rgba(20, 184, 166, 0.4);
        --spot-br: rgba(99, 102, 241, 0.5);
        
        --bg-primary: #f5f5f5;
        --bg-secondary: #ffffff;
        --bg-tertiary: #f0f0f0;
        --bg-glass: rgba(255, 255, 255, 0.7);
        --bg-glass-hover: rgba(255, 255, 255, 0.85);
        
        --text-primary: #1a1a1a;
        --text-secondary: rgba(0, 0, 0, 0.6);
        --text-tertiary: rgba(0, 0, 0, 0.4);
        
        --honeycomb-color: rgba(0, 0, 0, 0.03);
        --honeycomb-stroke: rgba(0, 0, 0, 0.06);
        
        --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
        --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.05);
        --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    }
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

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

ul {
    list-style: none;
}

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

/* Background Effects */
.honeycomb-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -2;
}

#honeycomb-canvas {
    width: 100%;
    height: 100%;
}

.gradient-spots {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.spot {
    position: absolute;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    filter: blur(100px);
}

.spot-tl { top: -20%; left: -20%; background: var(--spot-tl); }
.spot-tr { top: -20%; right: -20%; background: var(--spot-tr); }
.spot-bl { bottom: -20%; left: -20%; background: var(--spot-bl); }
.spot-br { bottom: -20%; right: -20%; background: var(--spot-br); }

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Glassmorphism */
.glass {
    background: var(--bg-glass);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-family);
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: white;
    box-shadow: 0 4px 14px rgba(34, 197, 94, 0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(34, 197, 94, 0.5); }

.btn-secondary {
    background: var(--bg-glass);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-secondary:hover { background: var(--bg-glass-hover); }

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

.btn-sm { padding: var(--space-sm) var(--space-md); font-size: 0.875rem; }
.btn-full { width: 100%; }

.btn.disabled, .btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    filter: grayscale(50%);
}

.btn-primary.disabled, .btn-primary:disabled {
    background: linear-gradient(135deg, #6b7280, #4b5563);
    box-shadow: none;
}

.btn-enterprise {
    background: linear-gradient(135deg, var(--color-accent-purple), #7c3aed);
    color: white;
    box-shadow: 0 4px 14px rgba(139, 92, 246, 0.4);
}
.btn-enterprise:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5); }

/* Language Selector */
.lang-selector {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-md);
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
}

.lang-btn:hover {
    background: var(--bg-glass-hover);
}

.lang-flag-img {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    object-fit: cover;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.lang-code {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + var(--space-sm));
    right: 0;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: var(--space-sm);
    min-width: 160px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s;
    z-index: 1000;
}

.lang-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    background: transparent;
    border: none;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
}

.lang-option:hover {
    background: var(--bg-glass);
    color: var(--text-primary);
}

.lang-option .lang-flag-img {
    width: 22px;
    height: 16px;
    border-radius: 2px;
    object-fit: cover;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.lang-option .lang-code {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-tertiary);
    min-width: 20px;
}

.lang-option .lang-name {
    flex: 1;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: var(--space-md) 0;
    background: linear-gradient(to bottom, var(--bg-primary) 0%, transparent 100%);
}

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

.logo { display: flex; align-items: center; gap: var(--space-sm); }
.logo-icon { width: 36px; height: 36px; color: var(--color-primary); }
.logo-icon svg { width: 100%; height: 100%; }
.logo-icon img { width: 100%; height: 100%; object-fit: contain; }

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.logo-by { font-size: 0.75rem; color: var(--text-tertiary); font-weight: 500; margin-left: var(--space-xs); }

.nav-menu { display: flex; align-items: center; gap: var(--space-lg); }
.nav-menu a { color: var(--text-secondary); font-weight: 500; font-size: 0.9rem; transition: color 0.2s; }
.nav-menu a:hover { color: var(--text-primary); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: var(--space-sm); }
.nav-toggle span { width: 24px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: all 0.3s; }

/* Hero Section */
.hero { padding: calc(var(--space-4xl) + 60px) 0 var(--space-4xl); min-height: 100vh; display: flex; align-items: center; }
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4xl); align-items: center; }

.hero-badge {
    display: inline-flex; align-items: center; gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md); background: var(--bg-glass);
    border-radius: var(--radius-full); font-size: 0.875rem; color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.hero-title { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; line-height: 1.1; margin-bottom: var(--space-lg); letter-spacing: -0.02em; }
.gradient-text {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent-teal));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-description { font-size: 1.125rem; color: var(--text-secondary); max-width: 500px; margin-bottom: var(--space-xl); }
.hero-actions { display: flex; gap: var(--space-md); margin-bottom: var(--space-2xl); flex-wrap: wrap; }
.hero-stats { display: flex; gap: var(--space-2xl); }
.stat { display: flex; flex-direction: column; }
.stat-value { font-size: 2rem; font-weight: 800; color: var(--color-primary); }
.stat-label { font-size: 0.875rem; color: var(--text-tertiary); }

/* Phone Mockup */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.phone-mockup { position: relative; width: 280px; }
.phone-frame { background: var(--bg-secondary); border-radius: 40px; padding: 10px; box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.1); }
.phone-screen { background: var(--bg-primary); border-radius: 32px; overflow: hidden; aspect-ratio: 9/19; }

.app-header { padding: var(--space-md); text-align: center; border-bottom: 1px solid rgba(255, 255, 255, 0.05); display: flex; align-items: center; justify-content: center; gap: var(--space-sm); }
.app-title { font-weight: 700; font-size: 1.1rem; }
.pro-badge { background: linear-gradient(135deg, var(--color-gold), #f59e0b); color: #000; font-size: 0.6rem; font-weight: 800; padding: 2px 6px; border-radius: 4px; }
.app-content { padding: var(--space-md); }
.scan-area { aspect-ratio: 1; background: var(--bg-secondary); border-radius: var(--radius-md); display: flex; flex-direction: column; align-items: center; justify-content: center; margin-bottom: var(--space-md); position: relative; }
.scanner-frame { width: 60%; height: 60%; position: relative; }
.corner { position: absolute; width: 20px; height: 20px; border: 3px solid var(--color-primary); }
.corner-tl { top: 0; left: 0; border-right: none; border-bottom: none; }
.corner-tr { top: 0; right: 0; border-left: none; border-bottom: none; }
.corner-bl { bottom: 0; left: 0; border-right: none; border-top: none; }
.corner-br { bottom: 0; right: 0; border-left: none; border-top: none; }
.scan-text { font-size: 0.75rem; color: var(--text-tertiary); margin-top: var(--space-md); }
.item-list { display: flex; flex-direction: column; gap: var(--space-sm); }
.item-card { display: flex; align-items: center; gap: var(--space-sm); padding: var(--space-sm); background: var(--bg-secondary); border-radius: var(--radius-md); }
.item-icon { width: 36px; height: 36px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.item-info { flex: 1; display: flex; flex-direction: column; }
.item-name { font-size: 0.8rem; font-weight: 600; }
.item-expiry { font-size: 0.7rem; color: var(--text-tertiary); }
.item-qty { font-size: 0.875rem; font-weight: 700; color: var(--color-primary); }

.floating-card {
    position: absolute; padding: var(--space-sm) var(--space-md); background: var(--bg-glass);
    backdrop-filter: blur(20px); border-radius: var(--radius-md); border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex; align-items: center; gap: var(--space-sm); font-size: 0.8rem; box-shadow: var(--shadow-md);
    animation: float 3s ease-in-out infinite;
}
.card-1 { top: 20%; right: -20%; animation-delay: 0s; }
.card-2 { bottom: 30%; left: -25%; animation-delay: 1.5s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* Section Styles */
.section-header { text-align: center; max-width: 700px; margin: 0 auto var(--space-3xl); }
.section-tag { display: inline-block; padding: var(--space-xs) var(--space-md); background: var(--bg-glass); border-radius: var(--radius-full); font-size: 0.875rem; font-weight: 600; color: var(--color-primary); margin-bottom: var(--space-md); }
.section-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: var(--space-md); }
.section-description { color: var(--text-secondary); font-size: 1.1rem; }
.trial-highlight { display: block; margin-top: var(--space-sm); color: var(--color-gold); font-weight: 600; }

/* Use Cases Section */
.usecases { padding: var(--space-4xl) 0; background: linear-gradient(to bottom, transparent, rgba(34, 197, 94, 0.03), transparent); }

/* Use Cases Tabs */
.usecases-tabs { display: flex; justify-content: center; gap: var(--space-sm); margin-bottom: var(--space-2xl); }
.usecase-tab-btn {
    display: flex; align-items: center; gap: var(--space-sm); padding: var(--space-md) var(--space-xl);
    background: var(--bg-glass); border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md); color: var(--text-secondary); font-weight: 600;
    cursor: pointer; transition: all 0.2s;
}
.usecase-tab-btn:hover { background: var(--bg-glass-hover); color: var(--text-primary); }
.usecase-tab-btn.active { background: var(--color-primary); color: white; border-color: var(--color-primary); }
.usecase-tab-btn .tab-icon { font-size: 1.25rem; }

/* Use Cases Tab Content */
.usecase-tab-content { display: none; }
.usecase-tab-content.active { display: block; animation: fadeIn 0.3s ease; }

.usecases-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: var(--space-xl); max-width: 1400px; margin: 0 auto; }
.usecase-card { display: flex; flex-direction: column; padding: 0; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; border: 1px solid rgba(34, 197, 94, 0.1); }
.usecase-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(34, 197, 94, 0.15); border-color: rgba(34, 197, 94, 0.3); }
.usecase-image { position: relative; height: 200px; overflow: hidden; }
.usecase-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.usecase-image.illustration { background: linear-gradient(135deg, var(--bg-glass), rgba(34, 197, 94, 0.1)); display: flex; align-items: center; justify-content: center; padding: 20px; }
.usecase-image.illustration img { object-fit: contain; max-height: 160px; width: auto; }
.usecase-svg { width: 100%; height: 100%; max-height: 180px; filter: drop-shadow(0 4px 8px rgba(34, 197, 94, 0.15)); }
.usecase-card:hover .usecase-img { transform: scale(1.05); }
.usecase-content { padding: var(--space-xl); flex: 1; display: flex; flex-direction: column; }
.usecase-benefit { position: relative; }
.benefit-tag { display: inline-block; padding: var(--space-xs) var(--space-md); background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(20, 184, 166, 0.2)); color: #86efac; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; border-radius: var(--radius-full); margin-bottom: var(--space-md); border: 1px solid rgba(34, 197, 94, 0.2); }
.usecase-benefit h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: var(--space-md); color: var(--text-primary); line-height: 1.3; }
.usecase-benefit p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; }

@media (max-width: 768px) {
    .usecases-grid { grid-template-columns: 1fr; }
    .usecase-image { height: 180px; }
}

/* Features Section */
.features { padding: var(--space-4xl) 0; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: var(--space-lg); }
.feature-card { padding: var(--space-xl); transition: transform 0.2s, box-shadow 0.2s; }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-icon { width: 56px; height: 56px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; color: white; margin-bottom: var(--space-lg); }
.feature-title { font-size: 1.25rem; font-weight: 700; margin-bottom: var(--space-sm); }
.feature-description { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; }

/* Benefits Section */
.benefits { padding: var(--space-4xl) 0; }
.benefits-layout { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4xl); align-items: center; }
.benefits-content .section-tag, .benefits-content .section-title { text-align: left; }
.benefits-list { display: flex; flex-direction: column; gap: var(--space-lg); }
.benefit-item { display: flex; gap: var(--space-md); }
.benefit-icon { width: 28px; height: 28px; background: rgba(34, 197, 94, 0.1); border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.benefit-text h4 { font-size: 1.1rem; font-weight: 600; margin-bottom: var(--space-xs); }
.benefit-text p { color: var(--text-secondary); font-size: 0.95rem; }
.benefits-visual { display: flex; justify-content: center; }
.card-demo { width: 100%; max-width: 400px; padding: var(--space-xl); }
.demo-header { font-weight: 600; margin-bottom: var(--space-lg); padding-bottom: var(--space-md); border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.chart-demo { display: flex; align-items: center; gap: var(--space-lg); margin-bottom: var(--space-xl); }
.pie-chart { width: 120px; height: 120px; }
.pie-chart svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.chart-legend { display: flex; flex-direction: column; gap: var(--space-sm); }
.legend-item { display: flex; align-items: center; gap: var(--space-sm); font-size: 0.875rem; }
.dot { width: 10px; height: 10px; border-radius: var(--radius-full); }
.expiry-bars { display: flex; flex-direction: column; gap: var(--space-md); }
.bar-item { display: flex; align-items: center; gap: var(--space-md); }
.bar-label { font-size: 0.8rem; color: var(--text-tertiary); width: 70px; flex-shrink: 0; }
.bar { flex: 1; height: 8px; background: rgba(255, 255, 255, 0.1); border-radius: var(--radius-full); overflow: hidden; }
.bar-fill { height: 100%; border-radius: var(--radius-full); transition: width 1s ease; }
.bar-value { font-size: 0.875rem; font-weight: 600; width: 24px; text-align: right; }

/* Pricing Section */
.pricing { padding: var(--space-4xl) 0; }

/* Usage Tabs */
.usage-tabs { display: flex; justify-content: center; gap: var(--space-sm); margin-bottom: var(--space-2xl); }
.tab-btn {
    display: flex; align-items: center; gap: var(--space-sm); padding: var(--space-md) var(--space-xl);
    background: var(--bg-glass); border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md); color: var(--text-secondary); font-weight: 600;
    cursor: pointer; transition: all 0.2s;
}
.tab-btn:hover { background: var(--bg-glass-hover); color: var(--text-primary); }
.tab-btn.active { background: var(--color-primary); color: white; border-color: var(--color-primary); }
.tab-btn.disabled { opacity: 0.5; cursor: not-allowed; }
.tab-btn.disabled:hover { background: var(--bg-glass); color: var(--text-secondary); }
.tab-btn .tab-badge { font-size: 0.65rem; background: var(--color-accent-purple); color: white; padding: 2px 8px; border-radius: var(--radius-full); margin-left: var(--space-xs); font-weight: 600; }
.tab-icon { font-size: 1.25rem; }

/* Tab Content */
.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Pricing Grid */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--space-lg); max-width: 1000px; margin: 0 auto; }
.pricing-card { padding: var(--space-xl); position: relative; transition: transform 0.2s; }
.pricing-card:hover { transform: translateY(-4px); }

.pro-card { border: 2px solid var(--color-gold); box-shadow: 0 0 30px rgba(251, 191, 36, 0.15); }
.enterprise-card { border: 2px solid var(--color-accent-purple); }

.pro-badge-popular {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, var(--color-gold), #f59e0b); color: #000;
    padding: var(--space-xs) var(--space-md); border-radius: var(--radius-full);
    font-size: 0.75rem; font-weight: 700;
}

.pricing-header { text-align: center; margin-bottom: var(--space-xl); }
.plan-name { font-size: 1.5rem; font-weight: 800; margin-bottom: var(--space-xs); }
.plan-desc { color: var(--text-tertiary); font-size: 0.9rem; margin-bottom: var(--space-md); }
.plan-price { display: flex; align-items: baseline; justify-content: center; gap: var(--space-xs); margin-bottom: var(--space-sm); }
.price { font-size: 3rem; font-weight: 800; color: var(--color-primary); }
.period { color: var(--text-tertiary); font-size: 1rem; }
.trial-note { color: var(--color-gold); font-size: 0.875rem; font-weight: 500; }

.pricing-features { display: flex; flex-direction: column; gap: var(--space-sm); margin-bottom: var(--space-xl); }
.feature-item { display: flex; align-items: center; gap: var(--space-sm); font-size: 0.9rem; }
.feature-item.disabled { color: var(--text-tertiary); }
.feature-item svg { flex-shrink: 0; }
.feature-item.pro-feature { color: var(--color-gold); }

/* Coming Soon - Business Pricing */
.coming-soon-container { max-width: 600px; margin: 0 auto; padding: var(--space-xl) 0; }
.coming-soon-card { padding: var(--space-3xl); text-align: center; }
.coming-soon-icon { font-size: 4rem; margin-bottom: var(--space-lg); opacity: 0.8; }
.coming-soon-title { font-size: 2rem; font-weight: 800; margin-bottom: var(--space-md); background: linear-gradient(135deg, var(--color-secondary), var(--color-accent-purple)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.coming-soon-description { color: var(--text-secondary); font-size: 1rem; margin-bottom: var(--space-xl); line-height: 1.7; }

/* Comparison Section */
.comparison-section { margin-top: var(--space-3xl); }
.comparison-title { text-align: center; font-size: 1.5rem; font-weight: 700; margin-bottom: var(--space-xl); }
.comparison-table-wrapper { overflow-x: auto; padding: var(--space-xl); }
.comparison-table { width: 100%; border-collapse: collapse; }
.comparison-table th, .comparison-table td { padding: var(--space-md); text-align: left; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.comparison-table th { font-weight: 600; color: var(--text-secondary); font-size: 0.9rem; }
.comparison-table td:first-child { font-weight: 500; }
.comparison-table td:not(:first-child) { text-align: center; }
.check { color: var(--color-primary); font-weight: 700; }
.check.pro { color: var(--color-gold); }
.check.business { color: var(--color-secondary); }
.cross { color: var(--text-tertiary); }
.pro-row { background: rgba(251, 191, 36, 0.03); }
.business-row { background: rgba(59, 130, 246, 0.03); }

/* Download Section */
.download { padding: var(--space-4xl) 0; }
.download-card { padding: var(--space-3xl); text-align: center; }
.download-title { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; margin-bottom: var(--space-md); }
.download-description { color: var(--text-secondary); max-width: 550px; margin: 0 auto var(--space-xl); }
.download-buttons { display: flex; gap: var(--space-md); justify-content: center; flex-wrap: wrap; margin-bottom: var(--space-xl); }
.store-badge { display: flex; align-items: center; gap: var(--space-md); padding: var(--space-md) var(--space-lg); background: var(--bg-primary); border-radius: var(--radius-md); color: var(--text-primary); transition: transform 0.2s, box-shadow 0.2s; }
.store-badge:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.store-badge svg { width: 32px; height: 32px; }
.store-badge.disabled, .store-badge:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    filter: grayscale(50%);
    border: none;
    background: var(--bg-tertiary);
}
.store-text { display: flex; flex-direction: column; align-items: flex-start; }
.store-small { font-size: 0.75rem; color: var(--text-tertiary); }
.store-large { font-size: 1rem; font-weight: 600; }
.platforms-note { display: flex; align-items: center; justify-content: center; gap: var(--space-sm); color: var(--text-tertiary); font-size: 0.875rem; }
.platform-icons { display: flex; gap: var(--space-sm); }
.platform-icons span { font-size: 1.25rem; }

/* Footer */
.footer { padding: var(--space-3xl) 0 var(--space-xl); border-top: 1px solid rgba(255, 255, 255, 0.05); }
.footer-content { display: flex; justify-content: space-between; gap: var(--space-2xl); margin-bottom: var(--space-2xl); }
.footer-brand { max-width: 280px; }
.footer-tagline { margin-top: var(--space-sm); color: var(--text-tertiary); font-size: 0.9rem; }
.footer-links { display: flex; gap: var(--space-3xl); }
.footer-col h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: var(--space-md); color: var(--text-primary); }
.footer-col ul { display: flex; flex-direction: column; gap: var(--space-sm); }
.footer-col a { color: var(--text-secondary); font-size: 0.875rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--text-primary); }
.footer-bottom { padding-top: var(--space-xl); border-top: 1px solid rgba(255, 255, 255, 0.05); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--space-md); }
.footer-bottom p { color: var(--text-tertiary); font-size: 0.875rem; }
.made-with { color: var(--color-primary) !important; }

/* Cookie Consent */
.cookie-consent { position: fixed; bottom: 0; left: 0; right: 0; background: var(--bg-secondary); border-top: 1px solid rgba(255, 255, 255, 0.1); padding: var(--space-lg); z-index: 1000; transform: translateY(100%); transition: transform 0.3s ease; }
.cookie-consent.show { transform: translateY(0); }
.cookie-content { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: var(--space-lg); }
.cookie-text h4 { font-size: 1rem; margin-bottom: var(--space-xs); }
.cookie-text p { color: var(--text-secondary); font-size: 0.875rem; }
.cookie-text a { color: var(--color-primary); text-decoration: underline; }
.cookie-actions { display: flex; gap: var(--space-sm); flex-shrink: 0; }

/* Cookie Modal */
.cookie-modal { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.5); display: flex; align-items: center; justify-content: center; z-index: 1001; opacity: 0; visibility: hidden; transition: all 0.2s; }
.cookie-modal.show { opacity: 1; visibility: visible; }
.cookie-modal-content { max-width: 500px; width: 90%; padding: var(--space-xl); text-align: center; }
.cookie-modal-content h3 { margin-bottom: var(--space-lg); }
.cookie-options { display: flex; flex-direction: column; gap: var(--space-md); margin-bottom: var(--space-xl); }
.cookie-option { display: flex; justify-content: space-between; align-items: center; padding: var(--space-md); background: rgba(255, 255, 255, 0.05); border-radius: var(--radius-md); text-align: left; }
.cookie-option-info { display: flex; flex-direction: column; gap: var(--space-xs); }
.cookie-option-name { font-weight: 600; }
.cookie-option-desc { font-size: 0.8rem; color: var(--text-tertiary); }

/* Toggle Switch */
.toggle { position: relative; display: inline-block; width: 48px; height: 24px; }
.toggle input { opacity: 0; width: 0; height: 0; }
.toggle-slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background: var(--bg-tertiary); border-radius: var(--radius-full); transition: 0.3s; }
.toggle-slider::before { position: absolute; content: ""; height: 18px; width: 18px; left: 3px; bottom: 3px; background: white; border-radius: 50%; transition: 0.3s; }
.toggle input:checked + .toggle-slider { background: var(--color-primary); }
.toggle input:checked + .toggle-slider::before { transform: translateX(24px); }
.toggle input:disabled + .toggle-slider { opacity: 0.5; cursor: not-allowed; }

/* Responsive */
@media (max-width: 992px) {
    .hero .container { grid-template-columns: 1fr; text-align: center; }
    .hero-description { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { order: -1; }
    .phone-mockup { width: 240px; }
    .floating-card { display: none; }
    .benefits-layout { grid-template-columns: 1fr; }
    .benefits-content .section-tag, .benefits-content .section-title { text-align: center; }
    .footer-content { flex-direction: column; align-items: center; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 768px) {
    .nav-menu { position: fixed; top: 0; right: -100%; width: 80%; max-width: 300px; height: 100vh; background: var(--bg-secondary); flex-direction: column; padding: var(--space-3xl) var(--space-xl); transition: right 0.3s ease; }
    .nav-menu.show { right: 0; }
    .nav-toggle { display: flex; z-index: 101; }
    .features-grid, .pricing-grid { grid-template-columns: 1fr; }
    .usage-tabs { flex-direction: column; align-items: center; }
    .tab-btn { width: 200px; justify-content: center; }
    .lang-selector { order: -1; margin-bottom: var(--space-md); }
    .lang-dropdown { right: auto; left: 0; }
    .cookie-content { flex-direction: column; text-align: center; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .comparison-table-wrapper { padding: var(--space-md); }
    .comparison-table { font-size: 0.875rem; }
    .comparison-table th, .comparison-table td { padding: var(--space-sm); }
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.feature-card, .benefit-item { animation: fadeInUp 0.5s ease forwards; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
