/* ============ NAAMSETU - NETFLIX STYLE CSS ============ */
/* Black & Red Theme - Fully Responsive */

/* ============ CSS VARIABLES ============ */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #141414;
    --bg-tertiary: #1f1f1f;
    --bg-card: #1a1a1a;
    --bg-card-hover: #2a2a2a;
    
    --accent-primary: #e50914;
    --accent-hover: #f40612;
    --accent-gradient: linear-gradient(135deg, #e50914 0%, #f97316 100%);
    --accent-glow: rgba(229, 9, 20, 0.3);
    
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --text-muted: #808080;
    
    --border-light: rgba(255, 255, 255, 0.08);
    --border-medium: rgba(255, 255, 255, 0.15);
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.8);
    --shadow-glow: 0 0 30px var(--accent-glow);
    
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --container-max: 1400px;
    --section-padding: 100px 20px;
}

/* ============ RESET & BASE ============ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }

/* ============ NAVBAR ============ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.6rem;
    font-weight: 800;
    cursor: pointer;
}

.logo-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(229, 9, 20, 0.5));
}

.logo-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.btn-download {
    background: var(--accent-gradient);
    padding: 10px 22px;
    border-radius: 6px;
    color: #fff !important;
    font-weight: 600;
    box-shadow: var(--shadow-glow);
}

.nav-link.btn-download::after { display: none; }

.nav-link.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(229, 9, 20, 0.5);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
}

/* ============ HERO SECTION ============ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 60px;
    position: relative;
    background: 
        radial-gradient(circle at 20% 50%, rgba(229, 9, 20, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(249, 115, 22, 0.1) 0%, transparent 50%),
        var(--bg-primary);
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.5) 100%);
    pointer-events: none;
}

.hero-content {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    display: inline-block;
    position: relative;
}

.highlight::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 12px;
    background: var(--accent-gradient);
    opacity: 0.3;
    z-index: -1;
    transform: skewX(-12deg);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--accent-gradient);
    color: #fff;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(229, 9, 20, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid var(--border-medium);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-primary);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-stat .stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat .stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 5px;
}

/* Phone Mockup */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: linear-gradient(145deg, #2a2a2a 0%, #0a0a0a 100%);
    border-radius: 45px;
    padding: 12px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.8),
        0 0 0 2px rgba(255, 255, 255, 0.05),
        inset 0 0 20px rgba(255, 255, 255, 0.02);
    position: relative;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: perspective(1000px) rotateY(-15deg) rotateX(5deg) translateY(0); }
    50% { transform: perspective(1000px) rotateY(-15deg) rotateX(5deg) translateY(-20px); }
}

.phone-mockup.large {
    width: 350px;
    height: 700px;
    transform: perspective(1000px) rotateY(10deg);
    animation: float 6s ease-in-out infinite reverse;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    border-radius: 35px;
    overflow: hidden;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.05);
}

.phone-screen::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 20px;
    background: #000;
    border-radius: 10px;
    z-index: 10;
}

.app-preview {
    padding: 50px 20px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.preview-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    padding: 15px;
    background: var(--accent-gradient);
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-glow);
}

.preview-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.preview-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.preview-card:hover {
    border-color: var(--accent-primary);
    transform: translateX(5px);
}

.card-icon {
    font-size: 1.5rem;
}

.card-text {
    font-weight: 600;
    color: var(--text-primary);
}

.preview-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

.stat-box {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.stat-box .stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-box .stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 5px;
}

/* ============ SECTION STYLES ============ */
section {
    padding: var(--section-padding);
}

.section-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.1;
    letter-spacing: -1px;
}

/* ============ FEATURES GRID ============ */
.features {
    background: 
        radial-gradient(circle at 10% 50%, rgba(229, 9, 20, 0.08) 0%, transparent 40%),
        var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 35px;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card.featured {
    background: linear-gradient(145deg, rgba(229, 9, 20, 0.15) 0%, var(--bg-card) 100%);
    border-color: rgba(229, 9, 20, 0.3);
}

.feature-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-gradient);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--accent-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: var(--shadow-glow);
}

.feature-icon {
    font-size: 2rem;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-light);
}

.feature-list li:last-child {
    border-bottom: none;
}

/* ============ HOW IT WORKS ============ */
.how-it-works {
    background: var(--bg-primary);
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.step {
    flex: 1;
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    position: relative;
    transition: all 0.4s ease;
}

.step:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-glow);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.3rem;
    box-shadow: var(--shadow-glow);
}

.step-icon {
    font-size: 3rem;
    margin: 20px 0;
}

.step h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.step-connector {
    width: 2px;
    background: linear-gradient(180deg, transparent, var(--accent-primary), transparent);
    position: relative;
}

/* ============ STORE & FEED PREVIEW ============ */
.store-preview {
    background: 
        radial-gradient(circle at 90% 50%, rgba(249, 115, 22, 0.1) 0%, transparent 40%),
        var(--bg-secondary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
}

.feed-preview {
    background: var(--bg-primary);
}

.feed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.loading-spinner {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* ============ DOWNLOAD SECTION ============ */
.download {
    position: relative;
    background: var(--bg-secondary);
    overflow: hidden;
}

.download-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(229, 9, 20, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(249, 115, 22, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.download .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.download-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.download-content > p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.download-buttons {
    margin-bottom: 30px;
}

.btn-store {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #000;
    border: 2px solid var(--text-primary);
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-store:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-glow);
}

.store-icon {
    font-size: 2.5rem;
}

.store-text {
    display: flex;
    flex-direction: column;
}

.store-small {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.store-large {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.app-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.app-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.app-feature span {
    color: var(--accent-primary);
    font-weight: bold;
    font-size: 1.1rem;
}

.download-image {
    display: flex;
    justify-content: center;
}

/* ============ FOOTER ============ */
.footer {
    background: #050505;
    padding: 80px 20px 30px;
    border-top: 1px solid var(--border-light);
}

.footer-grid {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-primary);
    font-weight: 600;
}

.footer-col p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-col ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--accent-primary);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-gradient);
    border-color: var(--accent-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: var(--container-max);
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ============ RESPONSIVE DESIGN ============ */

/* Large Tablets & Small Laptops */
@media (max-width: 1024px) {
    .hero {
        padding: 100px 20px 40px;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
        letter-spacing: -1px;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin: 0 auto 30px;
        max-width: 90%;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .btn-large {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 30px;
    }
    
    .hero-image {
        order: -1;
        margin-bottom: 20px;
    }
    
    .phone-mockup {
        width: 220px;
        height: 440px;
        transform: none;
        animation: none;
        margin: 0 auto;
    }
    
    .phone-mockup.large {
        width: 240px;
        height: 480px;
        transform: none;
        animation: none;
    }
    
    .download .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .download-content h2 {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    
    .download-buttons {
        display: flex;
        justify-content: center;
    }
    
    .app-features {
        justify-content: center;
    }
    
    .download-image {
        order: -1;
    }
}

/* Tablets & Mobile */
@media (max-width: 768px) {
    :root {
        --section-padding: 70px 20px;
    }
    
    .hero {
        padding: 90px 15px 30px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 40px;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .hero-stat {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: var(--bg-card);
        padding: 15px 20px;
        border-radius: 12px;
        border: 1px solid var(--border-light);
        width: 100%;
    }
    
    .hero-stat .stat-number {
        font-size: 1.8rem;
    }
    
    .hero-stat .stat-label {
        font-size: 0.85rem;
        text-align: left;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
        padding: 8px;
    }
    
    .phone-mockup.large {
        width: 220px;
        height: 440px;
    }
    
    .app-preview {
        padding: 45px 15px 15px;
    }
    
    .preview-header {
        font-size: 1.1rem;
        padding: 12px;
    }
    
    .preview-card {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
        margin-bottom: 40px;
        padding: 0 10px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .steps-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .step-connector {
        display: none;
    }
    
    .step {
        padding: 30px 20px;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background: var(--bg-secondary);
        width: 100%;
        height: calc(100vh - 70px);
        padding: 30px;
        gap: 25px;
        transition: right 0.3s ease;
        border-top: 1px solid var(--border-light);
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero {
        padding: 80px 12px 25px;
    }
    
    .hero-title {
        font-size: 1.9rem;
        letter-spacing: -0.5px;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .btn-large {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    .hero-stats {
        max-width: 100%;
    }
    
    .hero-stat {
        padding: 12px 15px;
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
    
    .hero-stat .stat-number {
        font-size: 1.6rem;
    }
    
    .hero-stat .stat-label {
        font-size: 0.8rem;
    }
    
    .phone-mockup {
        width: 180px;
        height: 360px;
    }
    
    .phone-mockup.large {
        width: 200px;
        height: 400px;
    }
    
    .nav-container {
        padding: 12px 15px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo-icon {
        font-size: 1.6rem;
    }
    
    .download-content h2 {
        font-size: 1.8rem;
    }
    
    .download-content > p {
        font-size: 1rem;
    }
    
    .btn-store {
        padding: 12px 20px;
    }
    
    .store-icon {
        font-size: 2rem;
    }
    
    .store-large {
        font-size: 1.3rem;
    }
    
    .app-features {
        flex-direction: column;
        gap: 12px;
    }
    
    .feature-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon {
        font-size: 1.6rem;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .step-icon {
        font-size: 2.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Extra Small Mobile */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.7rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .phone-mockup {
        width: 160px;
        height: 320px;
    }
    
    .btn-large {
        padding: 13px 18px;
        font-size: 0.9rem;
    }
}

/* Landscape Mobile */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 100px 20px 40px;
    }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        width: auto;
    }
    
    .hero-stats {
        flex-direction: row;
        width: auto;
        max-width: none;
    }
    
    .hero-image {
        order: 0;
    }
    
    .phone-mockup {
        width: 180px;
        height: 360px;
    }
}

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 1s ease;
}

.hero-image {
    animation: fadeInUp 1s ease 0.3s both;
}

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-hover);
}

/* ============ SELECTION ============ */
::selection {
    background: var(--accent-primary);
    color: #fff;
}

/* ============ LOADING STATES ============ */
img {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img.loaded {
    opacity: 1;
}