/* website/css/styles.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700;900&family=Roboto+Mono:wght@700&display=swap');

:root {
    --primary: #10B981; /* Emerald */
    --primary-glow: rgba(16, 185, 129, 0.2);
    --bg-dark: #0F1115;
    --surface-dark: #1E2128;
    --text-main: #F8FAFC;
    --text-dim: #94A3B8;
    --error: #EF4444;
    --glass: rgba(30, 33, 40, 0.7);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography for Metrics */
.metric {
    font-family: 'Roboto Mono', monospace;
    font-weight: 700;
}

.text-emerald { color: var(--primary); }
.text-dim { color: var(--text-dim); }
.text-error { color: var(--error); }

/* Brand wordmark: NET + DRIVE (emerald) */
.brand-text {
    font-size: 1.5rem;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -0.05em;
}

/* Glassmorphism */
.glass-card {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    transition: var(--transition);
}

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

/* Buttons */
.btn-primary {
    background-color: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 4px 14px var(--primary-glow);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--primary-glow);
    filter: brightness(1.1);
}

.btn-outline {
    background-color: transparent;
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: var(--primary-glow);
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 100px 0;
}

/* Navigation */
nav {
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(15, 17, 21, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    font-size: 1.4rem;
    color: white;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a.btn-primary {
    color: white !important;
}

/* Hamburger Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
    z-index: 1001;
}

.mobile-menu-toggle:hover {
    border-color: var(--primary);
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Language Switcher */
.lang-switcher {
    position: relative;
    display: inline-block;
}

.lang-current {
    background: rgba(30, 33, 40, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.lang-current:hover {
    background: rgba(30, 33, 40, 0.8);
    border-color: var(--primary);
}

.lang-current::after {
    content: '▼';
    font-size: 0.7rem;
    opacity: 0.6;
    transition: transform 0.3s;
}

.lang-dropdown.active ~ .lang-current::after,
.lang-switcher:hover .lang-current::after {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--surface-dark);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1000;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

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

.lang-option {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary);
}

.lang-option.active {
    background: rgba(16, 185, 129, 0.15);
    color: var(--primary);
    font-weight: 600;
}

/* RTL Support for Language Switcher */
[dir="rtl"] .lang-dropdown {
    right: auto;
    left: 0;
}

/* Hero Section - Enhanced */
.hero {
    padding-top: 140px;
    padding-bottom: 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.08) 0%, transparent 60%);
    pointer-events: none;
    animation: pulse-gradient 8s ease-in-out infinite;
}

@keyframes pulse-gradient {
    0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.8; transform: translateX(-50%) scale(1.1); }
}

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

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 2rem;
    position: relative;
    animation: fade-in-up 0.6s ease-out;
}

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

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

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

/* Hero Title */
.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 1.5rem;
    letter-spacing: -3px;
    animation: fade-in-up 0.8s ease-out 0.2s both;
}

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

.hero-title-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 12px;
    background: var(--primary-glow);
    z-index: -1;
    animation: expand-underline 1s ease-out 1s both;
}

@keyframes expand-underline {
    from { width: 0%; }
    to { width: 100%; }
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.35rem;
    color: var(--text-dim);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    animation: fade-in-up 1s ease-out 0.4s both;
}

/* Hero CTA Group */
.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fade-in-up 1.2s ease-out 0.6s both;
}

.btn-hero {
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
}

/* Hero Trust Indicators */
.hero-trust {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0.8;
    animation: fade-in-up 1.4s ease-out 0.8s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-dim);
}

/* Hero Mockup Container - image is the full mockup, no extra frame */
.hero-mockup {
    position: relative;
    margin-top: 80px;
    animation: fade-in-up 1.6s ease-out 1s both;
}

/* Mockup images: fixed size so large assets don’t control layout */
.hero-mockup-img {
    display: block;
    width: 320px;
    height: 650px;
    margin: 0 auto;
    object-fit: contain;
    object-position: center;
    border-radius: 12px;
}

.step-mockup-img {
    display: block;
    width: 240px;
    height: 480px;
    margin: 0 auto;
    object-fit: contain;
    object-position: center;
    border-radius: 8px;
}

.mockup-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.3) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

/* Enhanced Device Frame */
.device-frame-enhanced {
    position: relative;
    width: 320px;
    height: 650px;
    background: linear-gradient(145deg, #1a1d24, #0f1115);
    border-radius: 45px;
    border: 14px solid #0a0c0f;
    margin: 0 auto;
    box-shadow: 
        0 60px 120px rgba(0,0,0,0.6),
        0 0 0 1px rgba(255,255,255,0.05),
        inset 0 0 0 1px rgba(255,255,255,0.1);
    overflow: hidden;
    transform: perspective(1000px) rotateY(0deg);
    transition: transform 0.3s ease;
}

.device-frame-enhanced:hover {
    transform: perspective(1000px) rotateY(5deg);
}

.device-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 30px;
    background: #000;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    z-index: 10;
}

/* Floating Metrics */
.floating-metric {
    position: absolute;
    background: rgba(15, 17, 21, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    animation: float 3s ease-in-out infinite;
}

.floating-metric-1 {
    top: 15%;
    left: -10%;
    animation-delay: 0s;
}

.floating-metric-2 {
    bottom: 20%;
    right: -10%;
    animation-delay: 1.5s;
}

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

.metric-label {
    font-size: 0.75rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.metric-value {
    font-family: 'Roboto Mono', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

/* Device Mockup (Legacy - keep for other sections) */
.device-frame {
    position: relative;
    width: 300px;
    height: 600px;
    background: #000;
    border-radius: 40px;
    border: 12px solid #1E2128;
    margin: 60px auto 0;
    box-shadow: 0 50px 100px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.1);
    overflow: hidden;
}

.device-screen {
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
}

/* Comparison Section - Enhanced */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

/* Footer */
footer {
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    transition: var(--transition);
}

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

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 12, 16, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 999;
        padding: 2rem;
    }

    .nav-links.mobile-open {
        display: flex;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .nav-links .lang-switcher {
        order: -1;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }

    .floating-metric {
        display: none;
    }

    .comparison-container {
        flex-direction: column;
    }

    .comparison-vs {
        transform: rotate(90deg);
        margin: 2rem 0;
    }

    .features-layout {
        grid-template-columns: 1fr;
    }

    .steps-container {
        flex-direction: column;
    }

    .step-connector {
        transform: rotate(90deg);
        width: 60px;
        margin: 1rem auto;
    }
}

/* ===================================
   SECTION: COMPARISON ENHANCED
   =================================== */

.comparison-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #15181E 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-dim);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.comparison-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.comparison-card {
    flex: 1;
    min-width: 320px;
    max-width: 420px;
    background: rgba(30, 33, 40, 0.6);
    backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s ease;
}

.comparison-card:hover {
    transform: translateY(-8px);
}

.comparison-old {
    border-color: rgba(239, 68, 68, 0.2);
}

.comparison-new {
    border-color: var(--primary);
    background: rgba(16, 185, 129, 0.05);
}

.comparison-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.comparison-icon-sad {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error);
}

.comparison-icon-happy {
    background: var(--primary-glow);
    color: var(--primary);
}

.comparison-label {
    text-align: center;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--text-dim);
    margin-bottom: 2rem;
}

.comparison-amount {
    text-align: center;
    margin-bottom: 2rem;
}

.amount-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-dim);
    margin-bottom: 0.5rem;
}

.amount-value {
    font-size: 3.5rem;
    line-height: 1;
}

.amount-value span {
    font-size: 1.5rem;
    color: var(--text-dim);
}

.comparison-amount-profit .amount-value {
    color: var(--primary);
}

.comparison-text {
    text-align: center;
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.hidden-costs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cost-badge {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--error);
    text-align: center;
}

.receipt-breakdown {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.receipt-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    font-size: 0.95rem;
}

.receipt-line-deduct {
    opacity: 0.7;
}

.receipt-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 1rem 0;
}

.receipt-total {
    font-weight: 700;
    font-size: 1.05rem;
}

.profit-badge {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    text-align: center;
    color: var(--primary);
    font-size: 0.9rem;
}

.comparison-vs {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vs-circle {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.25rem;
    color: white;
    box-shadow: 0 8px 24px var(--primary-glow);
    z-index: 2;
}

.vs-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--primary), transparent);
    z-index: 1;
}

/* ===================================
   SECTION: HIDDEN THIEF (PICKUP KM)
   =================================== */

.hidden-thief-section {
    background: linear-gradient(180deg, #15181E 0%, var(--bg-dark) 100%);
    padding: 120px 0;
    position: relative;
}

.thief-example-container {
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 4rem;
}

.thief-example-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 3rem;
    color: var(--text-main);
}

.thief-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.thief-card {
    background: rgba(30, 33, 40, 0.6);
    backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.thief-card-illusion {
    border-color: rgba(255, 255, 255, 0.2);
}

.thief-card-reality {
    border-color: var(--error);
    background: rgba(239, 68, 68, 0.05);
}

.thief-card:hover {
    transform: translateY(-5px);
}

.thief-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(16, 185, 129, 0.1);
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    font-weight: 700;
    font-size: 0.95rem;
}

.thief-calculation {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.thief-line {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
}

.thief-line-alert {
    background: rgba(239, 68, 68, 0.1);
    border-left: 3px solid var(--error);
}

.thief-result {
    margin-top: 1rem;
    padding: 1.5rem;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
}

.thief-result-fake {
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid var(--primary);
}

.thief-result-real {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid var(--error);
}

.thief-lost {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(239, 68, 68, 0.2);
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--error);
}

.thief-impact {
    background: rgba(30, 33, 40, 0.8);
    border: 2px solid rgba(16, 185, 129, 0.2);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 4rem;
}

.thief-impact h4 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 3rem;
}

.impact-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 1.5rem;
    align-items: center;
}

.impact-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.impact-item:hover {
    transform: scale(1.05);
}

.impact-bad {
    border: 2px solid rgba(239, 68, 68, 0.3);
}

.impact-good {
    border: 2px solid rgba(16, 185, 129, 0.3);
}

.impact-win {
    border: 2px solid var(--primary);
    background: rgba(16, 185, 129, 0.1);
}

.impact-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.impact-item p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.impact-arrow {
    font-size: 2rem;
    color: var(--primary);
    font-weight: 900;
}

.thief-solution {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(30, 33, 40, 0.8));
    border: 2px solid var(--primary);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
}

.solution-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 2rem;
    color: var(--primary);
}

.solution-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.solution-feature {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.solution-feature:hover {
    background: rgba(16, 185, 129, 0.1);
    transform: translateY(-3px);
}

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

    .impact-grid {
        grid-template-columns: 1fr;
    }

    .impact-arrow {
        transform: rotate(90deg);
    }
}

/* ===================================
   SECTION: FEATURES ENHANCED
   =================================== */

.features-section {
    padding: 120px 0;
    background: var(--bg-dark);
}

.features-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.features-content {
    position: relative;
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(16, 185, 129, 0.05);
    border-color: var(--primary);
    transform: translateX(8px);
}

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

.feature-content {
    flex: 1;
}

.feature-title {
    font-weight: 900;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.feature-description {
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.6;
}

.features-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-value span {
    font-size: 1.2rem;
    color: var(--text-dim);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-dim);
}

.features-visual {
    position: relative;
}

.algorithm-showcase {
    position: relative;
    height: 500px;
}

.showcase-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
    filter: blur(60px);
}

.showcase-card {
    position: absolute;
    background: rgba(30, 33, 40, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.showcase-card-1 {
    top: 0;
    left: 0;
    animation: float 4s ease-in-out infinite;
}

.showcase-card-2 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation: float 4s ease-in-out infinite 1s;
}

.showcase-card-3 {
    bottom: 0;
    left: 20%;
    animation: float 4s ease-in-out infinite 2s;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-bottom: 1rem;
}

.card-metric {
    margin-top: 0.5rem;
}

.metric-small {
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-bottom: 0.25rem;
}

.metric-large {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.metric-large span {
    font-size: 1.2rem;
    color: var(--text-dim);
}

.metric-change {
    font-size: 0.8rem;
    color: var(--primary);
    margin-top: 0.5rem;
}

/* ===================================
   SECTION: HOW IT WORKS ENHANCED
   =================================== */

.how-it-works-section {
    background: #0A0C0F;
    padding: 120px 0;
}

.steps-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
}

.step-card {
    flex: 1;
    max-width: 320px;
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--primary-glow);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--primary);
    margin: 0 auto 1.5rem;
}

.step-device {
    position: relative;
    margin-bottom: 1.5rem;
}

.device-frame-small {
    width: 240px;
    height: 480px;
    background: #000;
    border-radius: 36px;
    border: 10px solid #1E2128;
    margin: 0 auto;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
    overflow: hidden;
}

.step-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    filter: blur(60px);
    pointer-events: none;
    z-index: -1;
}

.step-glow-1 {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.3), transparent);
    animation: glow-pulse 3s ease-in-out infinite;
}

.step-glow-2 {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.3), transparent);
    animation: glow-pulse 3s ease-in-out infinite 1s;
}

.step-glow-3 {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.3), transparent);
    animation: glow-pulse 3s ease-in-out infinite 2s;
}

.step-title {
    font-weight: 900;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.step-description {
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step-feature {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(16, 185, 129, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary);
}

.step-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 200px;
}

.connector-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.connector-arrow {
    font-size: 2rem;
    color: var(--primary);
    animation: arrow-pulse 2s ease-in-out infinite;
}

@keyframes arrow-pulse {
    0%, 100% { transform: translateX(0); opacity: 0.5; }
    50% { transform: translateX(8px); opacity: 1; }
}

/* ===================================
   SECTION: SOCIAL PROOF ENHANCED
   =================================== */

.social-proof-section {
    padding: 120px 0;
    background: var(--bg-dark);
}

/* Testimonials Grid - No Horizontal Scroll */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
    margin-bottom: 4rem;
}

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

.testimonial-card {
    background: rgba(30, 33, 40, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

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

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: var(--primary-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.testimonial-name {
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-location {
    font-size: 0.85rem;
    color: var(--text-dim);
}

.testimonial-stars {
    margin-left: auto;
    color: #FFA500;
    font-size: 0.9rem;
}

.testimonial-text {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 12px;
}

.testimonial-metric .metric-label {
    font-size: 0.85rem;
    color: var(--text-dim);
}

.testimonial-metric .metric-value {
    font-family: 'Roboto Mono', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

/* Recap Showcase - Separate Section */
.recap-showcase {
    margin: 4rem 0;
    padding: 3rem 0;
}

.recap-showcase-content {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.recap-card-sample {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(30, 33, 40, 0.95));
    backdrop-filter: blur(12px);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 24px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.1);
}

.recap-showcase-text {
    color: var(--text-dim);
    font-size: 1rem;
    line-height: 1.6;
}

.recap-showcase-text p {
    margin: 0;
}

.recap-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 2rem;
}

.recap-hero-metric {
    text-align: center;
    margin-bottom: 2rem;
}

.metric-huge {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    color: var(--primary);
}

.metric-huge span {
    font-size: 2.5rem;
}

.metric-unit {
    font-size: 1.25rem;
    color: var(--text-dim);
    margin-top: 0.5rem;
}

.recap-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.recap-stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.recap-stat span:first-child {
    display: block;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.social-proof-cta {
    text-align: center;
}

/* ===================================
   SECTION: FINAL CTA ENHANCED
   =================================== */

.final-cta-section {
    background: var(--primary);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    color: white;
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,0.05) 35px, rgba(255,255,255,0.05) 70px);
    animation: pattern-slide 20s linear infinite;
}

@keyframes pattern-slide {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.cta-stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cta-stat-item .stat-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-stat-item .stat-number {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.cta-stat-item .stat-label {
    font-size: 0.85rem;
    opacity: 0.9;
}

.cta-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.8rem 1.8rem;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 180px;
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-btn:hover::before {
    opacity: 1;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.cta-btn-ios {
    background: #FFFFFF;
    color: #000000;
}

.cta-btn-ios:hover {
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
}

.cta-btn-android {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.cta-btn-android:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

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

/* Invert icon for iOS button (since bg is white) */
.cta-btn-ios .btn-icon-img {
    filter: brightness(0); /* Black icon */
}

/* Keep icon white for Android button */
.cta-btn-android .btn-icon-img {
    filter: brightness(0) invert(1); /* White icon */
}

.cta-btn .btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.cta-btn .btn-label {
    font-size: 0.7rem;
    font-weight: 500;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-btn .btn-store {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.cta-trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ===================================
   MOBILE OPTIMIZATIONS (FEATURES)
   =================================== */

/* Mobile Only Utilities */
.mobile-only { display: none; }

@media (max-width: 768px) {
    .mobile-only { display: flex; }

    /* Features Section Reordering using display: contents */
    .features-layout {
        display: flex;
        flex-direction: column;
        gap: 0; /* Spacing handled by children margins */
    }

    .features-content {
        display: contents; /* Flattens the hierarchy */
    }

    /* Assign Orders */
    .features-content .section-badge { order: 1; align-self: flex-start; margin-bottom: 1rem; }
    .features-content .section-title { order: 2; text-align: left; margin-bottom: 0.5rem; }
    .features-content .section-subtitle { order: 3; text-align: left; margin-bottom: 2rem; }
    
    .features-visual {
        order: 4;
        width: 100vw;
        margin-left: -1rem; /* Full bleed */
        margin-right: -1rem;
        margin-bottom: 2rem;
        margin-top: 0;
    }

    .features-grid { order: 5; margin-bottom: 2rem; }
    .features-stats { order: 6; }

    /* Carousel Styling */
    .algorithm-showcase {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 0 1.5rem 20px 1.5rem;
        gap: 1rem;
        height: auto;
        min-height: auto;
        -webkit-overflow-scrolling: touch;
    }

    .algorithm-showcase::-webkit-scrollbar { display: none; }

    .showcase-card {
        position: relative !important; /* Override absolute positioning */
        top: auto !important; left: auto !important; right: auto !important; bottom: auto !important;
        transform: none !important;
        animation: none !important;
        flex: 0 0 85%;
        scroll-snap-align: center;
        background: rgba(30, 33, 40, 0.8);
        margin: 0;
    }

    .showcase-card.card-highlight {
        background: rgba(16, 185, 129, 0.1);
        border: 1px solid rgba(16, 185, 129, 0.3);
    }
    
    .showcase-glow { display: none; } /* Hide glow on mobile to save perf/space */

    /* Scroll Indicators */
    .scroll-indicators {
        justify-content: center;
        gap: 8px;
        margin-bottom: 1rem;
    }
    
    .dot {
        width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.1);
    }
    .dot.active {
        background: var(--primary); width: 20px; border-radius: 4px;
    }

    /* Compact Stats Row */
    .features-stats {
        display: flex;
        /* Remove horizontal scrolling if not needed or ensure items fit */
        flex-wrap: wrap; /* Allow wrapping on very small screens */
        justify-content: space-between; /* Distribute space */
        gap: 0.5rem; /* Reduce gap */
        grid-template-columns: none;
        padding-bottom: 0;
    }

    .stat-item {
        /* min-width: 100px; Remove fixed min-width causing overflow */
        flex: 1 1 30%; /* Grow and shrink, basis ~30% for 3 items */
        padding: 0.75rem 0.5rem; /* Reduce vertical padding */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .stat-value { font-size: 1.25rem; } /* Slightly smaller font */
    .stat-value span { font-size: 0.9rem; } /* Smaller unit */
    .stat-label { font-size: 0.75rem; white-space: nowrap; } /* Smaller label */
}

/* ===================================
   MODERN HERO CTA BUTTONS
   =================================== */

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn-hero {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.8rem 1.8rem;
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    min-width: 180px;
    position: relative;
    overflow: hidden;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-hero:hover::before {
    opacity: 1;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.btn-ios {
    background: #FFFFFF;
    color: #000000;
}

.btn-ios:hover {
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
}

.btn-android {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-android:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

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

/* Invert icon for iOS button (since bg is white) */
.btn-ios .btn-icon-img {
    filter: brightness(0); /* Black icon */
}

/* Keep icon white for Android button */
.btn-android .btn-icon-img {
    filter: brightness(0) invert(1); /* White icon */
}

.btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.btn-label {
    font-size: 0.7rem;
    font-weight: 500;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-store {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* Mobile Tweaks */
@media (max-width: 480px) {
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .btn-hero {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }
}

/* Mobile Tweaks for CTA Buttons */
@media (max-width: 480px) {
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }
}

/* ============================================
   COMING SOON PAGE STYLES
   ============================================ */

/* Coming Soon Hero */
.coming-soon-hero {
    padding-top: 160px;
    padding-bottom: 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.coming-soon-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.coming-soon-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin: 2rem 0 1.5rem;
    letter-spacing: -1px;
}

.coming-soon-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-dim);
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Chart Visual */
.chart-visual {
    margin: 4rem 0;
    position: relative;
}

.chart-svg {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(16, 185, 129, 0.2));
}

.chart-line {
    animation: chartDraw 2s ease-out forwards;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}

@keyframes chartDraw {
    to {
        stroke-dashoffset: 0;
    }
}

.chart-point-active {
    animation: pulsePoint 2s ease-in-out infinite;
}

@keyframes pulsePoint {
    0%, 100% {
        r: 5;
        opacity: 1;
    }
    50% {
        r: 7;
        opacity: 0.8;
    }
}

.chart-label {
    margin-top: 1.5rem;
    font-size: 1.2rem;
    color: var(--text-dim);
}

/* Disabled Store Buttons */
.coming-soon-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.btn-disabled {
    background-color: rgba(30, 33, 40, 0.6);
    color: var(--text-dim);
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    cursor: not-allowed;
    opacity: 0.6;
    pointer-events: none;
    transition: var(--transition);
}

.btn-store-disabled {
    min-width: 200px;
    justify-content: center;
}

/* Countdown Section */
.countdown-section {
    padding: 60px 0;
}

.countdown-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.countdown-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: var(--text-main);
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.countdown-value {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--primary);
    line-height: 1;
    min-height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.countdown-note {
    font-size: 0.9rem;
    margin-top: 1.5rem;
    font-style: italic;
}

/* Teaser / Suspense Section */
.teaser-section {
    padding: 100px 0;
}

.teaser-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.teaser-card {
    text-align: center;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.teaser-card:nth-child(1) {
    animation-delay: 0.1s;
}

.teaser-card:nth-child(2) {
    animation-delay: 0.2s;
}

.teaser-card:nth-child(3) {
    animation-delay: 0.3s;
}

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

.teaser-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15);
}

.teaser-icon {
    margin-bottom: 1.5rem;
    display: inline-flex;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 16px;
    animation: pulseIcon 2s ease-in-out infinite;
}

@keyframes pulseIcon {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

.teaser-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.teaser-card-text {
    font-size: 1rem;
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.teaser-metric {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 1rem;
}

.teaser-reveal {
    max-width: 700px;
    margin: 4rem auto 0;
    text-align: center;
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.teaser-reveal::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    animation: rotateGlow 8s linear infinite;
    pointer-events: none;
}

@keyframes rotateGlow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.reveal-content {
    position: relative;
    z-index: 2;
}

.reveal-icon {
    margin-bottom: 1.5rem;
    display: inline-flex;
    animation: floatIcon 3s ease-in-out infinite;
}

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

.reveal-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.reveal-text {
    font-size: 1.2rem;
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.reveal-countdown {
    font-size: 1.3rem;
    margin-top: 1.5rem;
}

/* Mobile Responsive for Coming Soon */
@media (max-width: 768px) {
    .coming-soon-hero {
        padding-top: 120px;
        padding-bottom: 60px;
        min-height: auto;
    }

    .coming-soon-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .btn-store-disabled {
        width: 100%;
        max-width: 300px;
    }

    .countdown-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .teaser-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .teaser-reveal {
        padding: 2rem 1.5rem;
    }

    .chart-svg {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .countdown-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .countdown-value {
        font-size: 2rem;
    }

    .countdown-label {
        font-size: 0.75rem;
    }

    .lang-switcher {
        margin-right: 0.5rem;
    }

    .lang-current {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
}

/* RTL Support */
[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] .nav-links {
    flex-direction: row-reverse;
}

[dir="rtl"] .nav-content {
    flex-direction: row-reverse;
}

[dir="rtl"] .container {
    text-align: right;
}

[dir="rtl"] .coming-soon-content,
[dir="rtl"] .section-header,
[dir="rtl"] .countdown-card,
[dir="rtl"] .teaser-card,
[dir="rtl"] .teaser-reveal {
    text-align: right;
}

[dir="rtl"] .countdown-grid,
[dir="rtl"] .teaser-grid {
    direction: rtl;
}

[dir="rtl"] .form-group {
    flex-direction: row-reverse;
}

[dir="rtl"] .footer-content {
    flex-direction: row-reverse;
}

[dir="rtl"] .footer-links {
    text-align: right;
}

[dir="rtl"] .footer-links ul {
    padding-right: 0;
}

[dir="rtl"] .lang-dropdown {
    right: auto;
    left: 0;
}
