/* ═══════════════════════════════════════════════════════════════════════════
   MARKHOR CAPTCHA - CYBERPUNK GLASSMORPHISM DESIGN SYSTEM
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
    --bg-primary: #06090e;
    --bg-secondary: #0b0f19;
    --bg-card: rgba(13, 19, 31, 0.75);
    --bg-card-hover: rgba(18, 26, 43, 0.85);
    
    --accent-emerald: #10b981;
    --accent-cyan: #00f0ff;
    --accent-purple: #8b5cf6;
    
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    
    --border-dim: rgba(255, 255, 255, 0.08);
    --border-bright: rgba(0, 240, 255, 0.25);
    --border-emerald: rgba(16, 185, 129, 0.3);
    
    --glow-cyan: 0 0 25px rgba(0, 240, 255, 0.25);
    --glow-emerald: 0 0 25px rgba(16, 185, 129, 0.25);
    
    --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: var(--font-main); }
html { scroll-behavior: smooth; }
body { background-color: var(--bg-primary); color: var(--text-primary); overflow-x: hidden; line-height: 1.6; min-height: 100vh; display: flex; flex-direction: column; }

.ambient-bg { position: fixed; inset: 0; pointer-events: none; z-index: -2; overflow: hidden; }
.blob { position: absolute; border-radius: 50%; filter: blur(140px); opacity: 0.5; animation: blobFloat 20s ease-in-out infinite alternate; }
.blob-1 { top: -15%; left: 20%; width: 650px; height: 650px; background: radial-gradient(circle, rgba(16, 185, 129, 0.2), transparent 70%); }
.blob-2 { bottom: -10%; right: 15%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(0, 240, 255, 0.18), transparent 70%); animation-delay: -7s; }

@keyframes blobFloat { 0% { transform: translate(0, 0) scale(1); } 50% { transform: translate(40px, -50px) scale(1.1); } 100% { transform: translate(-30px, 30px) scale(0.95); } }

.grid-pattern { position: fixed; inset: 0; background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px); background-size: 40px 40px; z-index: -1; pointer-events: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; width: 100%; }

.glass-card { background: var(--bg-card); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid var(--border-dim); border-radius: var(--radius-lg); transition: all var(--transition-normal); box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4); }
.glass-card:hover { background: var(--bg-card-hover); border-color: var(--border-bright); box-shadow: var(--glow-cyan); transform: translateY(-4px); }

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

/* Navigation Bar */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(6, 9, 14, 0.88); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border-dim); }
.nav-container { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.logo-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text-primary); }
.logo-img { height: 44px; width: auto; object-fit: contain; }

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-link { color: var(--text-secondary); text-decoration: none; font-weight: 500; font-size: 1rem; transition: color var(--transition-fast); position: relative; padding: 8px 0; }
.nav-link:hover, .nav-link.active { color: var(--accent-cyan); }
.nav-link.active::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--accent-cyan), var(--accent-emerald)); border-radius: 2px; }

.mobile-toggle { display: none; background: transparent; border: none; color: var(--text-primary); font-size: 1.5rem; cursor: pointer; padding: 8px; }

/* Buttons & Official Chrome Web Store Logo */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 14px 28px; border-radius: var(--radius-md); font-weight: 600; font-size: 1rem; text-decoration: none; cursor: pointer; transition: all var(--transition-fast); border: 1px solid transparent; }

.btn-store {
    background: rgba(13, 19, 31, 0.9);
    border: 1px solid var(--border-bright);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 240, 255, 0.2);
}

.btn-store:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-cyan);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 240, 255, 0.4);
}

.chrome-store-img {
    height: 26px;
    width: auto;
    object-fit: contain;
}

.btn-primary { background: linear-gradient(135deg, var(--accent-cyan) 0%, #00a6ff 100%); color: #06090e; font-weight: 700; box-shadow: 0 4px 20px rgba(0, 240, 255, 0.3); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0, 240, 255, 0.55); }

.btn-telegram {
    background: linear-gradient(135deg, #0088cc 0%, #24a1de 100%);
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0, 136, 204, 0.35);
}

.btn-telegram:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0, 136, 204, 0.6); }
.btn-secondary { background: rgba(255, 255, 255, 0.05); color: var(--text-primary); border: 1px solid var(--border-dim); }
.btn-secondary:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--accent-cyan); color: var(--accent-cyan); transform: translateY(-3px); }
.btn-full { width: 100%; }

/* Hero */
.hero-section { padding: 170px 0 90px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.badge-tag { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; background: rgba(0, 240, 255, 0.08); border: 1px solid var(--border-bright); border-radius: var(--radius-xl); font-size: 0.85rem; font-weight: 600; color: var(--accent-cyan); margin-bottom: 24px; }
.hero-title { font-size: 3.4rem; font-weight: 800; line-height: 1.15; margin-bottom: 20px; }
.hero-subtitle { font-size: 1.15rem; color: var(--text-secondary); margin-bottom: 36px; font-weight: 300; line-height: 1.7; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }

.store-badge-card { display: flex; align-items: center; gap: 16px; padding: 16px 20px; background: rgba(13, 19, 31, 0.6); border: 1px solid var(--border-bright); border-radius: var(--radius-md); }
.store-icon { width: 38px; height: 38px; flex-shrink: 0; }
.store-info h4 { font-size: 0.95rem; font-weight: 700; }
.store-info p { font-size: 0.8rem; color: var(--text-muted); }

.preview-card { padding: 24px; border-color: var(--border-bright); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), var(--glow-cyan); }
.preview-header { display: flex; align-items: center; justify-content: space-between; padding-bottom: 16px; border-bottom: 1px solid var(--border-dim); margin-bottom: 20px; }
.preview-title { font-weight: 700; font-size: 0.9rem; color: var(--accent-cyan); font-family: var(--font-mono); }
.window-dots { display: flex; gap: 6px; }
.window-dots span { width: 10px; height: 10px; border-radius: 50%; }
.dot-red { background-color: #ef4444; } .dot-yellow { background-color: #f59e0b; } .dot-green { background-color: #10b981; }

.demo-box { background: rgba(6, 9, 14, 0.8); border: 1px solid var(--border-dim); border-radius: var(--radius-md); padding: 20px; text-align: center; }
.demo-instruction { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 16px; }
.demo-instruction strong { color: var(--accent-cyan); font-family: var(--font-mono); }
.captcha-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; }
.tile { aspect-ratio: 1; background: #111827; border: 2px solid transparent; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-weight: 700; font-size: 1.2rem; color: #4b5563; position: relative; }
.tile.detected { border-color: var(--accent-emerald); background: rgba(16, 185, 129, 0.15); color: var(--accent-emerald); box-shadow: var(--glow-emerald); }
.tile.detected::after { content: '✓'; position: absolute; top: 4px; right: 6px; font-size: 0.8rem; color: var(--accent-emerald); }
.demo-log { font-family: var(--font-mono); font-size: 0.78rem; color: var(--accent-emerald); text-align: left; background: rgba(0, 0, 0, 0.5); padding: 10px 14px; border-radius: var(--radius-sm); border-left: 3px solid var(--accent-emerald); }

.stats-section { padding: 30px 0 90px; }
.stats-card { display: flex; justify-content: space-around; align-items: center; padding: 32px 24px; }
.stat-box { text-align: center; }
.stat-number { font-size: 2.5rem; font-weight: 800; font-family: var(--font-mono); color: var(--accent-cyan); margin-bottom: 4px; }
.stat-label { font-size: 0.88rem; color: var(--text-secondary); }
.stat-divider { width: 1px; height: 50px; background: var(--border-dim); }

/* Features */
.features-section { padding: 90px 0; }
.section-title-box { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section-title-box h2 { font-size: 2.4rem; font-weight: 800; margin-bottom: 16px; }
.section-title-box p { color: var(--text-secondary); font-size: 1.05rem; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }
.feature-card { padding: 36px 28px; }
.feature-icon-wrapper { width: 60px; height: 60px; border-radius: var(--radius-md); background: rgba(0, 240, 255, 0.08); border: 1px solid var(--border-bright); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin-bottom: 24px; color: var(--accent-cyan); }
.feature-card h3 { font-size: 1.35rem; font-weight: 700; margin-bottom: 12px; }
.feature-card p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; }

/* Pricing */
.pricing-section { padding: 90px 0 120px; }
.pricing-grid { max-width: 520px; margin: 0 auto; }
.pricing-card { padding: 48px 36px; text-align: center; position: relative; border-color: var(--border-bright); box-shadow: 0 0 45px rgba(0, 240, 255, 0.15); }
.pricing-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--accent-cyan), var(--accent-emerald)); color: #06090e; font-size: 0.8rem; font-weight: 800; padding: 6px 20px; border-radius: 20px; text-transform: uppercase; letter-spacing: 1px; }
.pricing-header h3 { font-size: 1.8rem; font-weight: 800; margin-bottom: 16px; }
.price-box { display: flex; align-items: baseline; justify-content: center; gap: 4px; margin-bottom: 24px; }
.price-currency { font-size: 2.2rem; font-weight: 800; color: var(--accent-cyan); }
.price-amount { font-size: 4rem; font-weight: 800; font-family: var(--font-mono); color: var(--text-primary); line-height: 1; }
.price-period { font-size: 1.1rem; color: var(--text-secondary); }
.pricing-features { list-style: none; margin-bottom: 36px; text-align: left; }
.pricing-features li { display: flex; align-items: center; gap: 12px; font-size: 1.05rem; color: var(--text-primary); padding: 12px 0; border-bottom: 1px solid var(--border-dim); }
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li span.check { color: var(--accent-emerald); font-size: 1.2rem; font-weight: 800; }

/* Download Page */
.page-header { padding: 160px 0 60px; text-align: center; }
.page-header h1 { font-size: 3rem; font-weight: 800; margin-bottom: 16px; }
.page-header p { font-size: 1.1rem; color: var(--text-secondary); max-width: 600px; margin: 0 auto; }
.single-download-box { max-width: 650px; margin: 0 auto 80px; }
.download-card { padding: 48px 40px; display: flex; flex-direction: column; text-align: center; position: relative; }
.download-card.highlight { border-color: var(--border-bright); box-shadow: 0 0 35px rgba(0, 240, 255, 0.15); }
.card-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--accent-cyan), var(--accent-emerald)); color: #06090e; font-size: 0.75rem; font-weight: 800; padding: 4px 18px; border-radius: 12px; text-transform: uppercase; }
.card-icon-lg { font-size: 4rem; margin-bottom: 20px; }
.download-card h3 { font-size: 1.8rem; font-weight: 800; margin-bottom: 12px; }
.download-card p { color: var(--text-secondary); font-size: 1.05rem; margin-bottom: 32px; }

.guide-section { padding: 60px 0 100px; }
.steps-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; margin-top: 40px; }
.step-card { padding: 28px 24px; }
.step-number { font-family: var(--font-mono); font-size: 2.2rem; font-weight: 800; color: var(--accent-cyan); opacity: 0.5; margin-bottom: 12px; }
.step-card h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: 0.88rem; color: var(--text-secondary); }

/* Contact Page */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; margin-bottom: 100px; }
.contact-info-card { padding: 40px 32px; }
.contact-info-card h3 { font-size: 1.6rem; font-weight: 800; margin-bottom: 12px; }
.contact-info-card p { color: var(--text-secondary); margin-bottom: 36px; font-size: 0.95rem; }
.contact-methods { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: center; gap: 16px; padding: 16px 20px; background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border-dim); border-radius: var(--radius-md); text-decoration: none; color: var(--text-primary); transition: all var(--transition-fast); }
.contact-item:hover { border-color: var(--accent-cyan); background: rgba(0, 240, 255, 0.05); transform: translateX(4px); }
.contact-item-icon { width: 44px; height: 44px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.icon-email { background: rgba(59, 130, 246, 0.15); color: #3b82f6; }
.icon-telegram { background: rgba(0, 136, 204, 0.15); color: #0088cc; }
.icon-whatsapp { background: rgba(37, 211, 102, 0.15); color: #25d366; }
.contact-item-text h5 { font-size: 0.95rem; font-weight: 700; }
.contact-item-text p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

.contact-form-card { padding: 40px 32px; }
.form-group { margin-bottom: 24px; }
.form-label { display: block; font-size: 0.9rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 8px; }
.form-input, .form-textarea, .form-select { width: 100%; padding: 14px 18px; background: rgba(6, 9, 14, 0.8); border: 1px solid var(--border-dim); border-radius: var(--radius-md); color: var(--text-primary); font-family: var(--font-main); font-size: 0.95rem; outline: none; transition: all var(--transition-fast); }
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--accent-cyan); box-shadow: 0 0 15px rgba(0, 240, 255, 0.2); }
.form-textarea { resize: vertical; min-height: 130px; }

.modal-overlay { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.8); backdrop-filter: blur(8px); z-index: 2000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: all 0.3s ease; }
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal-card { max-width: 450px; width: 90%; padding: 40px 32px; text-align: center; transform: scale(0.9); transition: transform 0.3s ease; }
.modal-overlay.active .modal-card { transform: scale(1); }

.footer { margin-top: auto; background: var(--bg-secondary); border-top: 1px solid var(--border-dim); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 40px; margin-bottom: 40px; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; margin-top: 12px; max-width: 320px; }
.footer-column h5 { font-size: 0.95rem; font-weight: 700; margin-bottom: 18px; color: var(--text-primary); }
.footer-column ul { list-style: none; }
.footer-column li { margin-bottom: 10px; }
.footer-column a { color: var(--text-muted); text-decoration: none; font-size: 0.88rem; transition: color var(--transition-fast); }
.footer-column a:hover { color: var(--accent-cyan); }
.footer-bottom { padding-top: 30px; border-top: 1px solid var(--border-dim); display: flex; justify-content: space-between; align-items: center; color: var(--text-muted); font-size: 0.85rem; }

@media (max-width: 992px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } .hero-title { font-size: 2.75rem; } .contact-grid { grid-template-columns: 1fr; } .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 768px) { .nav-links { position: fixed; top: 80px; left: 0; right: 0; background: rgba(6, 9, 14, 0.95); backdrop-filter: blur(20px); flex-direction: column; padding: 30px 24px; border-bottom: 1px solid var(--border-dim); transform: translateY(-150%); transition: transform 0.3s ease; } .nav-links.active { transform: translateY(0); } .mobile-toggle { display: block; } .stats-card { flex-direction: column; gap: 24px; } .stat-divider { width: 60%; height: 1px; } .hero-title { font-size: 2.2rem; } .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; gap: 12px; text-align: center; } }
