:root {
    --primary-color: #007AFF;
    --secondary-color: #5856D6;
    --accent-color: #FF3B30;
    --text-primary: #FFFFFF;
    --text-secondary: #B0B0B0;
    --background: #0A0A0A;
    --surface: #1C1C1E;
    --surface-elevated: #2C2C2E;
    --border: #38383A;
    --shadow: rgba(0, 0, 0, 0.3);
    --gradient: linear-gradient(135deg, #007AFF 0%, #5856D6 100%);
    --gradient-dark: linear-gradient(135deg, #1C1C1E 0%, #2C2C2E 100%);
    --radius: 16px;
    --radius-small: 8px;
    --spacing: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--background);
    overflow-x: hidden;
}

/* --- THEME-WIDE STYLES FOR CONSISTENCY --- */
body {
    background: linear-gradient(135deg, #0A0A0A 0%, #181824 100%);
    color: #fff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: -0.01em;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Global geometric background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        /* Square grid pattern */
        linear-gradient(rgba(0, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.05) 1px, transparent 1px),
        /* Diagonal lines for extra geometry */
        linear-gradient(45deg, rgba(0, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(-45deg, rgba(0, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px, 40px 40px, 80px 80px, 80px 80px;
    background-position: 0 0, 0 0, 0 0, 40px 40px;
    animation: geometric-drift 30s linear infinite;
    z-index: -2;
}

/* Black gradient overlay to diffuse the geometric pattern */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 0, 0, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 0, 0, 0.3) 0%, transparent 50%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: -1;
}

@keyframes geometric-drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40px, 40px); }
}

section, .footer, .download, .community {
    background: transparent;
    box-shadow: none;
}

/* Clean section spacing system with 120px */
section {
    padding: 120px 0 !important;
    margin: 0 !important;
}

.hero {
    padding: 120px 0 !important;
    margin: 0 !important;
}

.features {
    padding: 120px 0 !important;
    margin: 0 !important;
}

.community {
    padding: 120px 0 !important;
    margin: 0 auto !important;
}

.comparison {
    padding: 120px 0 !important;
    margin: 0 !important;
}

.download {
    padding: 120px 0 !important;
    margin: 0 auto !important;
}

.footer {
    padding: 120px 0 60px 0 !important;
    margin: 0 !important;
}

/* Override any responsive conflicts */
@media (max-width: 768px) {
    section {
        padding: 120px 0 !important;
    }
    
    .hero,
    .features,
    .community,
    .comparison,
    .download {
        padding: 120px 0 !important;
        margin: 0 auto !important;
    }
    
    .footer {
        padding: 120px 0 60px 0 !important;
        margin: 0 !important;
    }
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0a0a0a;
    min-height: 100vh;
    color: white;
}

/* Removed old grid background - now using global geometric background */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        transparent 0%, 
        rgba(0, 255, 255, 0.03) 25%,
        rgba(255, 0, 255, 0.03) 75%,
        transparent 100%);
    pointer-events: none;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #00ffff 0%, #0099ff 100%);
    box-shadow: 
        0 0 20px rgba(0, 255, 255, 0.4),
        0 0 40px rgba(0, 255, 255, 0.2);
    transition: all 0.3s ease;
    animation: logo-pulse 3s ease-in-out infinite;
}

@keyframes logo-pulse {
    0%, 100% { 
        box-shadow: 
            0 0 20px rgba(0, 255, 255, 0.4),
            0 0 40px rgba(0, 255, 255, 0.2);
    }
    50% { 
        box-shadow: 
            0 0 30px rgba(0, 255, 255, 0.6),
            0 0 60px rgba(0, 255, 255, 0.4);
    }
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, 
        #ffffff 0%, 
        #00ffff 50%, 
        #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

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

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    padding: 12px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    letter-spacing: -0.2px;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 255, 255, 0.1) 0%,
        rgba(0, 200, 255, 0.05) 100%);
    border-radius: 12px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00ffff, #0099ff);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 1px;
    /* Underline disabled */
    display: none;
}

.nav-link:hover {
    color: #00ffff;
    transform: translateY(-2px);
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.nav-link:hover::before {
    opacity: 1;
}

/* Removed underline animation on hover */

/* Floating particles for navbar */
.nav-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.nav-particle {
    position: absolute;
    width: 1px;
    height: 1px;
    background: rgba(0, 255, 255, 0.4);
    border-radius: 50%;
    animation: nav-particle-float 6s linear infinite;
}

.nav-particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.nav-particle:nth-child(2) { left: 30%; animation-delay: 1s; }
.nav-particle:nth-child(3) { left: 50%; animation-delay: 2s; }
.nav-particle:nth-child(4) { left: 70%; animation-delay: 3s; }
.nav-particle:nth-child(5) { left: 90%; animation-delay: 4s; }

@keyframes nav-particle-float {
    0% { 
        transform: translateY(100px) scale(0);
        opacity: 0;
    }
    20% { 
        opacity: 1;
        transform: translateY(50px) scale(1);
    }
    80% { 
        opacity: 1;
        transform: translateY(-20px) scale(1);
    }
    100% { 
        transform: translateY(-50px) scale(0);
        opacity: 0;
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .nav-link {
        padding: 8px 12px;
        font-size: 14px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .logo-img {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 480px) {
    .nav-links {
        gap: 15px;
    }
    
    .nav-link {
        padding: 6px 10px;
        font-size: 13px;
    }
    
    .logo-text {
        font-size: 18px;
    }
}

/* Demo content to show navbar in action */
.demo-content {
    padding-top: 120px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.demo-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
}

#features { background: rgba(0, 255, 255, 0.02); }
#download { background: rgba(255, 0, 255, 0.02); }
#community { background: rgba(255, 255, 0, 0.02); }

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Removed custom grid - using global geometric background */

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

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--spacing);
    letter-spacing: -0.02em;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.6;
}

.small-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 18px;
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1.5;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border: none;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

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

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 8px 32px rgba(0, 122, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 122, 255, 0.4);
}

.btn-secondary {
    background: var(--surface-elevated);
    color: var(--text-primary);
    border: 1px solid var(--border);
    box-shadow: 0 4px 16px var(--shadow);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.phone-mockup {
    position: relative;
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #2C2C2E, #1C1C1E);
    border-radius: 40px;
    padding: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: rotate(5deg);
    transition: var(--transition);
}

.phone-mockup:hover {
    transform: rotate(0deg) scale(1.05);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--background);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.app-interface {
    padding: 20px;
    height: 100%;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
}

.time {
    color: var(--text-primary);
}

.indicators {
    display: flex;
    gap: 4px;
}

.signal, .battery {
    width: 18px;
    height: 10px;
    background: var(--text-primary);
    border-radius: 2px;
}

.battery {
    position: relative;
}

.battery::after {
    content: '';
    position: absolute;
    right: -2px;
    top: 2px;
    width: 2px;
    height: 6px;
    background: var(--text-primary);
    border-radius: 0 1px 1px 0;
}

.app-header {
    text-align: center;
    margin-bottom: 40px;
}

.app-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.insights-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.insight-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
}

.insight-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.card-icon {
    font-size: 32px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 122, 255, 0.1);
    border-radius: 12px;
}

.card-info {
    flex: 1;
}

.card-number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.card-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Features Section */
.features {
    background: var(--background);
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing);
}

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

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-weight: 400;
}

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

.feature-card {
    background: var(--surface-elevated);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

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

.feature-icon {
    font-size: 48px;
    margin-bottom: 24px;
    display: block;
}

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

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

/* Enhanced Features Cards UI/UX */
.enhanced-features .feature-card {
    background: linear-gradient(135deg, rgba(28,28,30,0.98) 0%, rgba(15,15,15,0.98) 100%);
    border: 1.5px solid #23233a;
    box-shadow: 0 12px 48px 0 #007AFF22, 0 2px 16px #0008;
    border-radius: 16px;
    padding: 64px 36px 52px 36px;
    transition: transform 0.25s cubic-bezier(.4,0,.2,1), box-shadow 0.25s cubic-bezier(.4,0,.2,1), border 0.25s;
    position: relative;
    overflow: hidden;
    text-align: center;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(12px);
    z-index: 1;
}
.enhanced-features .feature-card::before {
    content: '';
    position: absolute;
    top: -40px; left: -40px;
    width: 140px; height: 140px;
    background: radial-gradient(circle, #007AFF 0%, transparent 70%);
    opacity: 0.13;
    z-index: 0;
}
.enhanced-features .feature-card:hover {
    transform: translateY(-14px) scale(1.045);
    box-shadow: 0 32px 96px 0 #007AFF33, 0 12px 48px #23233a44;
    border: 1.5px solid #007AFF;
}
.enhanced-features .feature-icon {
    font-size: 68px;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #00FFB0 0%, #007AFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    filter: drop-shadow(0 2px 18px #007AFF33);
    z-index: 1;
}
.enhanced-features .feature-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #fff;
    letter-spacing: -0.01em;
    z-index: 1;
    font-family: 'Inter', 'SF Pro Display', Arial, sans-serif;
}
.enhanced-features .feature-description {
    color: #B0B0B0;
    font-size: 1.12rem;
    line-height: 1.7;
    font-weight: 500;
    z-index: 1;
    font-family: 'Inter', 'SF Pro Display', Arial, sans-serif;
}

/* Download Section */
.download {
    background: linear-gradient(135deg, rgba(28,28,30,0.98) 0%, rgba(15,15,15,0.98) 100%);
    border-radius: 24px;
    box-shadow: 0 8px 32px 0 #007AFF22, 0 2px 16px #0008;
    border: 1.5px solid #23233a;
    margin: 0 auto;
    max-width: 800px;
    position: relative;
    z-index: 2;
}
.download-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #ffffff 0%, #00ffff 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    letter-spacing: -0.5px;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}
.download-subtitle {
    font-size: 1.18rem;
    color: #B0B0B0;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 500;
}
.download-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-download, .btn-whatsapp {
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 18px 38px;
    box-shadow: 0 8px 32px 0 #007AFF22, 0 2px 16px #0008;
    border: none;
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
}
.btn-download {
    background: linear-gradient(135deg, #00ffff 0%, #007AFF 100%);
    color: #fff;
}
.btn-download:hover {
    background: linear-gradient(135deg, #007AFF 0%, #00ffff 100%);
    box-shadow: 0 16px 40px #007AFF44;
    transform: translateY(-4px) scale(1.04);
}
.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
}
.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    box-shadow: 0 16px 40px #25D36644;
    transform: translateY(-4px) scale(1.04);
}

/* --- Community Section --- */
.community {
    background: linear-gradient(135deg, rgba(28,28,30,0.98) 0%, rgba(15,15,15,0.98) 100%);
    border-radius: 24px;
    box-shadow: 0 8px 32px 0 #007AFF22, 0 2px 16px #0008;
    border: 1.5px solid #23233a;
    margin: 0 auto;
    max-width: 1000px;
    padding: 64px 32px 64px 32px;
    position: relative;
    z-index: 2;
}
.community-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #ffffff 0%, #00ffff 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    letter-spacing: -0.5px;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}
.community-subtitle {
    font-size: 1.18rem;
    color: #B0B0B0;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 500;
}
.social-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 32px;
    flex-wrap: wrap;
}
.social-link {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, rgba(28,28,30,0.98) 0%, rgba(35,35,58,0.98) 100%);
    border-radius: 16px;
    padding: 20px 24px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1.5px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.1);
    min-width: 200px;
}
.social-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 122, 255, 0.2);
    border-color: rgba(255,255,255,0.2);
}
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    transition: all 0.3s ease;
}
.social-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.social-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}
.social-handle {
    font-size: 0.9rem;
    color: #B0B0B0;
    font-weight: 500;
}

/* Platform-specific styling */
.social-link.instagram:hover .social-icon {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
}
.social-link.youtube:hover .social-icon {
    background: #FF0000;
    color: white;
}
.social-link.tiktok:hover .social-icon {
    background: linear-gradient(45deg, #ff0050, #00f2ea);
    color: white;
}
.social-link.instagram .social-icon {
    color: #E4405F;
}
.social-link.youtube .social-icon {
    color: #FF0000;
}
.social-link.tiktok .social-icon {
    color: #ff0050;
}

.stat {
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #23233a 0%, #2e3147 100%);
    border-radius: 18px;
    padding: 32px 36px;
    box-shadow: 0 2px 16px #007AFF22;
    min-width: 140px;
    width: 200px;
    max-width: 100%;
    text-align: center;
    box-sizing: border-box;
}
.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #00ffff;
    margin-bottom: 8px;
    text-shadow: 0 0 16px #00ffff44;
}
.stat-label {
    font-size: 1.1rem;
    color: #B0B0B0;
    font-weight: 600;
}

/* --- Footer --- */
.footer {
    background: transparent;
    color: #fff;
    border-top: 1.5px solid rgba(35, 35, 58, 0.3);
    padding: 60px 0 40px 0;
    box-shadow: 0 -4px 32px rgba(0, 122, 255, 0.1);
    border-radius: 0 0 24px 24px;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-logo-img {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #00ffff 0%, #0099ff 100%);
    border-radius: 10px;
    box-shadow: 0 0 20px #00ffff33;
}
.footer-logo-text {
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #00ffff 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    text-shadow: 0 0 20px #00ffff33;
}
.footer-text {
    color: #B0B0B0;
    font-size: 1rem;
    font-weight: 500;
}
.footer-links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}
.footer-link {
    color: #B0B0B0;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: color 0.2s;
}
.footer-link:hover {
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff44;
}

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

/* --- Ultra-premium Comparison Table --- */
.comparison {
    background: transparent;
    position: relative;
}
.comparison-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}
.comparison-title {
    font-size: clamp(2.5rem, 5vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: -0.02em;
    font-family: 'Inter', 'SF Pro Display', Arial, sans-serif;
    text-shadow: 0 4px 32px #007AFF22;
}
.comparison-subtitle {
    font-size: 1.22rem;
    color: #B0B0B0;
    margin-bottom: 54px;
    font-family: 'Inter', 'SF Pro Display', Arial, sans-serif;
    font-weight: 500;
}
.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 16px;
    box-shadow: 0 12px 64px 0 #007AFF22, 0 2px 16px #0008;
    background: rgba(18,18,18,0.98);
    padding: 0 0 12px 0;
    border: 1.5px solid #23233a;
    backdrop-filter: blur(12px);
}
.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: transparent;
    border-radius: 16px;
    overflow: hidden;
    margin: 0 auto;
    font-size: 1.12rem;
    font-family: 'Inter', 'SF Pro Display', Arial, sans-serif;
}
.comparison-table th, .comparison-table td {
    padding: 28px 22px;
    border-bottom: 1.5px solid rgba(255,255,255,0.07);
    color: #E5E5E5;
    background: rgba(18,18,18,0.98);
    position: relative;
    z-index: 1;
    font-weight: 500;
    text-align: center;
}
.comparison-table th {
    background: linear-gradient(90deg, #181824 0%, #23233a 100%);
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.01em;
    border-bottom: 2.5px solid #007AFF;
    font-size: 1.22rem;
    text-shadow: 0 2px 12px #007AFF22;
}
.comparison-table tr:last-child td {
    border-bottom: none;
}
.comparison-table .yes {
    color: #00FFB0;
    font-weight: 800;
    font-size: 1.25rem;
    font-family: 'Inter', 'SF Pro Display', Arial, sans-serif;
    letter-spacing: 0.01em;
    background: linear-gradient(90deg, #007AFF22 0%, #00FFB022 100%);
    border-radius: 8px;
    box-shadow: 0 2px 12px #00FFB022;
}
.comparison-table .no {
    color: #FF3B30;
    font-weight: 700;
    font-size: 1.18rem;
    background: linear-gradient(90deg, #181824 0%, #2C2C2E 100%);
    border-radius: 8px;
}
.comparison-table .maybe {
    color: #FFD600;
    font-weight: 600;
    background: linear-gradient(90deg, #23233a 0%, #FFD60011 100%);
    border-radius: 8px;
}
.comparison-table tr:hover td {
    background: linear-gradient(90deg, #23233a 0%, #007AFF11 100%);
    transition: background 0.2s;
}
.comparison-table td, .comparison-table th {
    border-right: none;
    border-left: none;
}
.comparison-table th:first-child, .comparison-table td:first-child {
    border-radius: 16px 0 0 16px;
}
.comparison-table th:last-child, .comparison-table td:last-child {
    border-radius: 0 16px 16px 0;
}
.comparison-table .yes:before {
    content: '\2713';
    display: inline-block;
    margin-right: 6px;
    font-size: 1.1em;
    color: #00FFB0;
    font-weight: 700;
    vertical-align: middle;
}
.comparison-table .no:before {
    content: '\2717';
    display: inline-block;
    margin-right: 6px;
    font-size: 1.1em;
    color: #FF3B30;
    font-weight: 700;
    vertical-align: middle;
}

/* --- Glassmorphic Animated Feature Cards (from user sample) --- */
.glass-card {
    position: relative;
    width: 100%;
    max-width: 420px;
    min-width: 260px;
    height: 560px;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, rgba(25, 25, 25, 0.9) 50%, rgba(15, 15, 15, 0.95) 100%);
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(40px);
    transform-style: preserve-3d;
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    margin: 0 auto;
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.22), 0 1.5px 8px rgba(0,122,255,0.10);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 255, 255, 0.02) 25%, rgba(255, 0, 255, 0.02) 75%, transparent 100%);
    border-radius: 32px;
    z-index: 1;
}
.glass-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00ffff 0%, #ff00ff 25%, #ffff00 50%, #00ffff 75%, #ff00ff 100%);
    border-radius: 34px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s ease;
}
.glass-card:hover {
    transform: rotateY(5deg) rotateX(5deg) translateZ(20px);
    border-color: rgba(0, 255, 255, 0.3);
}
.glass-card:hover::after {
    opacity: 0.6;
    animation: border-glow 2s ease infinite;
}
@keyframes border-glow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}
.glass-card .content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 40px;
}
.lock-container {
    position: relative;
    margin-bottom: 50px;
}
.lock-orbit {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orbit 8s linear infinite;
}
.lock-orbit::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00ffff;
    border-radius: 50%;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px #00ffff;
}
@keyframes orbit {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}
.lock-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00ffff 0%, #0099ff 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.4), 0 0 60px rgba(0, 255, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    animation: lock-pulse 3s ease-in-out infinite;
}
@keyframes lock-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
.lock-svg {
    width: 36px;
    height: 36px;
    fill: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}
.title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #00ffff 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    letter-spacing: -1px;
    line-height: 1.1;
    animation: title-glow 4s ease-in-out infinite;
}
@keyframes title-glow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.3)); }
    50% { filter: drop-shadow(0 0 40px rgba(0, 255, 255, 0.6)); }
}
.description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: -0.3px;
    max-width: 320px;
}
.highlight {
    color: #00ffff;
    font-weight: 600;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}
.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #00ffff;
    border-radius: 50%;
    opacity: 0;
    animation: particle-float 6s ease-in-out infinite;
}
.particle:nth-child(1) { top: 20%; left: 15%; animation-delay: 0s; }
.particle:nth-child(2) { top: 30%; right: 20%; animation-delay: 1s; }
.particle:nth-child(3) { bottom: 40%; left: 25%; animation-delay: 2s; }
.particle:nth-child(4) { bottom: 20%; right: 15%; animation-delay: 3s; }
.particle:nth-child(5) { top: 60%; left: 10%; animation-delay: 4s; }
.particle:nth-child(6) { top: 80%; right: 30%; animation-delay: 5s; }
@keyframes particle-float {
    0%, 100% { transform: translateY(0px) scale(0); opacity: 0; }
    50% { transform: translateY(-30px) scale(1); opacity: 0.8; }
}
.energy-ring {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid transparent;
    border-top: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: energy-spin 10s linear infinite;
    z-index: 0;
}
@keyframes energy-spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}
@media (max-width: 1200px) {
    .glass-card { max-width: 360px; height: 480px; }
}
@media (max-width: 900px) {
    .glass-card { max-width: 320px; height: 420px; }
    .glass-card .content { padding: 40px 20px; }
    .title { font-size: 1.5rem; }
}
@media (max-width: 600px) {
    .glass-card { max-width: 98vw; height: 340px; min-width: 0; }
    .glass-card .content { padding: 24px 8px; }
    .title { font-size: 1.1rem; }
    .lock-icon { width: 48px; height: 48px; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .phone-mockup {
        width: 240px;
        height: 480px;
        transform: rotate(0deg);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .social-links {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .social-link {
        min-width: 280px;
        width: 90%;
        max-width: 350px;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 0 !important;
    }
    
    .features,
    .download,
    .community {
        padding: 120px 0 !important;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
    }
    
    .app-interface {
        padding: 16px;
    }
    
    .insight-card {
        padding: 16px;
    }
    
    .feature-card {
        padding: 24px;
    }
}

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

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--surface);
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Enhanced button styles */
.btn {
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.btn:active {
    transform: translateY(1px) !important;
}

/* Better mobile touch targets */
@media (max-width: 768px) {
    .btn {
        min-height: 48px;
        min-width: 48px;
    }
    
    .nav-link {
        padding: 12px 8px;
    }
}

/* Removed duplicate - using consolidated comparison styles below */
.comparison-container {
  position: relative;
  z-index: 2;
  max-width: 950px;
  margin: 0 auto;
  padding: 32px 24px 48px 24px;
  border-radius: 32px;
  background: rgba(30, 32, 40, 0.55);
  box-shadow: 0 8px 48px 0 rgba(0,0,0,0.25), 0 1.5px 8px 0 rgba(0,0,0,0.10);
  backdrop-filter: blur(24px) saturate(1.5);
  border: 1.5px solid rgba(255,255,255,0.13);
  overflow: visible;
}
.floating-particles {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 3;
}
.floating-particles .particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.01) 80%);
  filter: blur(2px);
  animation: floatParticle 8s infinite ease-in-out;
}
.floating-particles .particle:nth-child(1) { width: 60px; height: 60px; left: 8%; top: 12%; animation-delay: 0s; }
.floating-particles .particle:nth-child(2) { width: 40px; height: 40px; left: 80%; top: 18%; animation-delay: 2s; }
.floating-particles .particle:nth-child(3) { width: 32px; height: 32px; left: 60%; top: 80%; animation-delay: 4s; }
.floating-particles .particle:nth-child(4) { width: 48px; height: 48px; left: 20%; top: 70%; animation-delay: 1s; }
.floating-particles .particle:nth-child(5) { width: 36px; height: 36px; left: 50%; top: 40%; animation-delay: 3s; }
@keyframes floatParticle {
  0% { transform: translateY(0) scale(1); opacity: 0.7; }
  50% { transform: translateY(-18px) scale(1.1); opacity: 1; }
  100% { transform: translateY(0) scale(1); opacity: 0.7; }
}
.comparison-title {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  text-align: center;
  margin-bottom: 0.5em;
  background: linear-gradient(90deg, #fff 60%, #7be7ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.comparison-subtitle {
  font-size: 1.2rem;
  color: #b6c2d6;
  text-align: center;
  margin-bottom: 2.2em;
}
.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: 20px;
  box-shadow: 0 2px 24px 0 rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.04);
  padding: 0.5em 0.5em 0.5em 0.5em;
}
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: rgba(255,255,255,0.10);
  border-radius: 18px;
  overflow: hidden;
  font-size: 1.08rem;
  box-shadow: 0 1.5px 12px 0 rgba(0,0,0,0.10);
  backdrop-filter: blur(12px) saturate(1.2);
}
.comparison-table thead {
  background: rgba(255,255,255,0.10);
}
.comparison-table .header-row {
  border-bottom: 2px solid rgba(255,255,255,0.13);
}
.comparison-table .header-cell {
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  padding: 1.1em 1.2em;
  text-align: center;
  background: linear-gradient(90deg, #23243a 0%, #2e3147 100%);
  border-right: 1.5px solid rgba(255,255,255,0.08);
}
.comparison-table .header-cell:last-child {
  border-right: none;
}
.comparison-table .header-cell.instalyze {
  background: linear-gradient(90deg, #7be7ff 0%, #3e8fff 100%);
  color: #23243a;
  text-shadow: 0 1px 8px #fff8;
  border-radius: 0 18px 0 0;
}
.comparison-table .feature-row {
  position: relative;
  transition: background 0.3s, box-shadow 0.3s;
}
.comparison-table .feature-row:hover {
  background: rgba(123,231,255,0.10);
  box-shadow: 0 2px 16px 0 #7be7ff33;
}
.comparison-table .feature-cell {
  padding: 1.1em 1.2em;
  color: #eaf6ff;
  text-align: center;
  font-weight: 500;
  border-bottom: 1.5px solid rgba(255,255,255,0.08);
  position: relative;
  z-index: 1;
}
.comparison-table .feature-cell.feature-name {
  text-align: left;
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.01em;
  background: linear-gradient(90deg, #23243a 0%, #2e3147 100%);
}
.comparison-table .feature-cell.instalyze-cell {
  color: #7be7ff;
  font-weight: 700;
  text-shadow: 0 1px 8px #7be7ff44;
  background: linear-gradient(90deg, #7be7ff22 0%, #3e8fff11 100%);
}
.comparison-table .check-icon {
  color: #7be7ff;
  font-size: 1.3em;
  font-weight: 700;
  filter: drop-shadow(0 0 6px #7be7ff88);
}
.comparison-table .cross-icon {
  color: #ff6b81;
  font-size: 1.3em;
  font-weight: 700;
  filter: drop-shadow(0 0 6px #ff6b8188);
}
.comparison-table .sometimes-text {
  color: #ffe066;
  font-weight: 600;
  font-size: 1em;
}
.comparison-table .limited-text {
  color: #b6c2d6;
  font-weight: 600;
  font-size: 1em;
}
.comparison-table .glow-effect {
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  pointer-events: none;
  z-index: 0;
  border-radius: 12px;
  box-shadow: 0 0 24px 0 #7be7ff22, 0 0 8px 0 #fff2;
  opacity: 0;
  transition: opacity 0.3s;
}
.comparison-table .feature-row:hover .glow-effect {
  opacity: 1;
}
@media (max-width: 700px) {
  .comparison-container {
    padding: 18px 2vw 32px 2vw;
    border-radius: 18px;
  }
  .comparison-title {
    font-size: 1.5rem;
  }
  .comparison-table .header-cell, .comparison-table .feature-cell {
    padding: 0.7em 0.5em;
    font-size: 0.98rem;
  }
  .comparison-table-wrapper {
    padding: 0.2em 0.1em 0.2em 0.1em;
  }
}

/* === THEME OVERRIDE - GLASSMORPHIC CONSISTENCY === */

/* Global Background and Grid */
body {
    color: #fff !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    letter-spacing: -0.01em !important;
    min-height: 100vh !important;
    overflow-x: hidden !important;
}

/* Hero Section Theme Override */
.hero-title {
    font-weight: 800 !important;
    color: #fff !important;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #00ffff 50%, #ffffff 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.2) !important;
}

.hero-subtitle, .small-subtitle, .hero-description {
    color: #B0B0B0 !important;
    font-weight: 500 !important;
}

.small-subtitle {
    font-weight: 600 !important;
}

/* Hero Buttons Theme Override */
.btn {
    border-radius: 16px !important;
    font-weight: 700 !important;
    box-shadow: 0 8px 32px 0 #007AFF22, 0 2px 16px #0008 !important;
    transition: all 0.3s cubic-bezier(.4,0,.2,1) !important;
}

.btn-primary {
    background: linear-gradient(135deg, #00ffff 0%, #007AFF 100%) !important;
    color: white !important;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.04) !important;
    box-shadow: 0 16px 40px #007AFF44 !important;
}

.btn-secondary {
    background: linear-gradient(135deg, #23233a 0%, #2e3147 100%) !important;
    color: #fff !important;
    border: 1px solid #23233a !important;
}

.btn-secondary:hover {
    transform: translateY(-2px) scale(1.04) !important;
    box-shadow: 0 16px 40px #23233a44 !important;
}

/* Phone Mockup Theme Override */
.phone-mockup {
    background: linear-gradient(145deg, rgba(28,28,30,0.98), rgba(15,15,15,0.98)) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 8px 32px 0 #007AFF22 !important;
    border: 1.5px solid #23233a !important;
    backdrop-filter: blur(20px) !important;
    transition: all 0.3s cubic-bezier(.4,0,.2,1) !important;
}

.phone-mockup:hover {
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6), 0 16px 48px 0 #007AFF33 !important;
}

/* Phone Screen Content */
.phone-screen {
    background: linear-gradient(135deg, rgba(15,15,15,0.95), rgba(25,25,25,0.9)) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(20px) !important;
}

/* Features Section Theme Override */
.features {
    background: transparent !important;
}

.section-title {
    font-weight: 800 !important;
    color: #fff !important;
    background: linear-gradient(135deg, #ffffff 0%, #00ffff 50%, #ffffff 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.2) !important;
}

.section-subtitle {
    color: #B0B0B0 !important;
    font-weight: 500 !important;
}

/* App Interface Elements */
.app-header h3 {
    color: #fff !important;
    font-weight: 700 !important;
}

.insight-card {
    background: rgba(28,28,30,0.8) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2) !important;
}

.insight-card:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(0, 122, 255, 0.2) !important;
}

.card-icon {
    background: rgba(0, 122, 255, 0.15) !important;
    border: 1px solid rgba(0, 122, 255, 0.2) !important;
}

.card-number {
    color: #fff !important;
    font-weight: 700 !important;
}

.card-label {
    color: #B0B0B0 !important;
    font-weight: 500 !important;
}

/* Status Bar Elements */
.time {
    color: #fff !important;
    font-weight: 600 !important;
}

.signal, .battery {
    background: #fff !important;
    border-radius: 2px !important;
}

.battery::after {
    background: #fff !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 120px 0 !important;
    }
    
    .phone-mockup {
        width: 240px !important;
        height: 480px !important;
        transform: rotate(0deg) !important;
    }
    
    .btn {
        width: 100% !important;
        max-width: 300px !important;
        justify-content: center !important;
    }
}

@media (max-width: 480px) {
    .phone-mockup {
        width: 200px !important;
        height: 400px !important;
    }
    
    .app-interface {
        padding: 16px !important;
    }
    
    .insight-card {
        padding: 16px !important;
    }
}

/* Image Performance Optimizations */
img {
    image-rendering: auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.logo-img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    will-change: transform;
}

.app-screenshot {
    image-rendering: auto;
    will-change: auto;
}

/* Prevent layout shift */
img[width][height] {
    height: auto;
}

/* Responsive image container */
picture {
    display: inline-block;
}

/* Performance hints */
.phone-screen img {
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}