:root {
    --primary-bg: #000000;
    --secondary-bg: #1A1A1A;
    --accent-yellow: #FFF600;
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow: rgba(0, 0, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Gradient */
.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000 0%, #1A1A1A 50%, #000000 100%);
    z-index: -2;
}

/* Animated Background Elements */
.bg-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    background: linear-gradient(45deg, var(--accent-yellow), transparent);
    border-radius: 50%;
    opacity: 0.02;
    animation: float 15s infinite ease-in-out;
}

.floating-element:nth-child(1) {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 300px;
    height: 300px;
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

.floating-element:nth-child(3) {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(15px) rotate(240deg); }
}

/* Glass morphism card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 5%;
    z-index: 1000;
    transition: background 0.3s ease;
}

nav.scrolled {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-yellow);
}

.nav-cta {
    background: var(--accent-yellow);
    color: var(--primary-bg);
    padding: 12px 24px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero-content .highlight {
    color: var(--accent-yellow);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Desktop Store Badge Styles */
.store-badge-link {
    display: inline-block;
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

.store-badge {
    width: 180px;
    height: 53px;
    object-fit: contain;
    display: block;
    transition: all 0.3s ease;
}

.store-badge-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    background: var(--accent-yellow);
    color: var(--primary-bg);
    padding: 16px 32px;
    border: none;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 246, 0, 0.3);
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--text-primary);
    padding: 16px 32px;
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* App Showcase Carousel */
.app-showcase {
    position: relative;
    width: 500px;
    height: 800px;
    perspective: 1000px;
}

.mockup-carousel {
    position: relative;
    width: 100%;
    height: 750px;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
}

.mockup-track {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mockup-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: none;
    transition: opacity 0.8s ease;
    border-radius: 0;
    overflow: hidden;
}

.mockup-slide.active {
    opacity: 1;
    transform: none;
    z-index: 2;
}

.mockup-slide.prev {
    opacity: 0;
    transform: none;
    z-index: 1;
}

.mockup-slide.next {
    opacity: 0;
    transform: none;
    z-index: 1;
}

.mockup-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;
    filter: none;
    background: transparent;
}

.mockup-slide:last-child img {
    transform: none;
    object-position: center;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Adjust for mobile devices - no scaling */
@media (max-width: 768px) {
    .mockup-slide:last-child img {
        transform: none;
    }
}

@media (max-width: 480px) {
    .mockup-slide:last-child img {
        transform: none;
    }
}

@media (max-width: 375px) {
    .mockup-slide:last-child img {
        transform: none;
    }
}

@media (max-width: 320px) {
    .mockup-slide:last-child img {
        transform: none;
    }
}



.carousel-dots {
    display: none;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--accent-yellow);
    border-color: var(--accent-yellow);
    transform: scale(1.2);
}

.dot:hover {
    border-color: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
}

.showcase-glow {
    display: none !important;
}

@keyframes glowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0; }
}

/* Loading states for images */
.mockup-slide img {
    transition: opacity 0.3s ease;
}

.mockup-slide img:not([loading="lazy"]) {
    opacity: 0;
}

.mockup-slide img[loading="lazy"] {
    opacity: 1;
}

/* Additional visual enhancements */
.app-showcase::before {
    display: none;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}



/* Features Section */
.features {
    padding: 120px 5%;
    background: linear-gradient(180deg, transparent, rgba(26, 26, 26, 0.5));
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-card {
    padding: 40px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--accent-yellow), #FFD700);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2rem;
    color: var(--primary-bg);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Stats Section */
.stats {
    padding: 80px 5%;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-yellow);
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Section */
.cta {
    padding: 120px 5%;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
}

.cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.cta p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

/* Footer */
footer {
    padding: 60px 5% 30px;
    border-top: 1px solid var(--glass-border);
    background: var(--secondary-bg);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--accent-yellow);
}

.footer-section p,
.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover {
    color: var(--accent-yellow);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
}

.social-links a:hover {
    color: var(--accent-yellow);
    background: rgba(255, 246, 0, 0.1);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .how-it-works-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .ai-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .hero-container {
        gap: 60px;
    }

    .hero-content h1 {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
    }

    .section-header h2 {
        font-size: clamp(2rem, 4vw, 2.5rem);
    }
}

/* Mobile Styles - Complete Redesign */
@media (max-width: 768px) {
    /* Reset and base mobile styles */
    * {
        box-sizing: border-box;
    }
    
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
        font-size: 16px;
    }
    
    /* Fix any elements that might cause horizontal overflow */
    *, *::before, *::after {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Ensure all sections stay within bounds */
    .features,
    .how-it-works,
    .ai-showcase,
    .cta,
    footer {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    /* Mobile Navigation - Clean header */
    nav {
        padding: 12px 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
    }
    
    .nav-container {
        padding: 0 20px;
        justify-content: flex-start;
        max-width: 100vw;
        width: 100%;
        position: relative;
    }
    
    .nav-links,
    .nav-cta {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        border-radius: 8px;
        padding: 8px;
        color: white;
        font-size: 1.2rem;
        z-index: 1001;
    }
    
    /* Mobile Menu Overlay */
    .nav-links.mobile-active {
        display: flex !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        z-index: 1000;
        padding: 20px;
    }
    
    .nav-links.mobile-active li {
        list-style: none;
        margin: 0;
    }
    
    .nav-links.mobile-active a {
        color: white;
        text-decoration: none;
        font-size: 1.5rem;
        font-weight: 600;
        padding: 15px 20px;
        border-radius: 8px;
        transition: all 0.3s ease;
        display: block;
        text-align: center;
    }
    
    .nav-links.mobile-active a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: var(--accent-yellow);
    }
    
    .logo {
        font-size: clamp(1.2rem, 4vw, 1.6rem);
        font-weight: 800;
        text-align: left;
    }

    /* Mobile Hero Section */
    .hero {
        padding: 10px 20px 40px;
        min-height: auto;
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .hero-container {
        display: flex;
        flex-direction: column;
        gap: 25px;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        padding: 0;
        overflow-x: hidden;
    }

    .hero-content {
        order: 1;
        text-align: center;
        padding: 20px 10px;
        margin-top: 50px;
    }

    .hero-content h1 {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
        line-height: 1.2;
        margin-bottom: 15px;
        font-weight: 800;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-content p {
        font-size: clamp(0.9rem, 4vw, 1.1rem);
        line-height: 1.5;
        margin-bottom: 25px;
        color: var(--text-secondary);
        max-width: 95%;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Mobile Buttons */
    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: min(320px, calc(100vw - 40px));
        margin: 0 auto;
        padding: 0 10px;
    }
    
    .btn-primary, 
    .btn-secondary {
        width: 100%;
        padding: 16px 20px;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        min-height: 48px;
        transition: all 0.3s ease;
        text-decoration: none;
        border: none;
        cursor: pointer;
    }
    
    .btn-primary {
        background: var(--accent-yellow);
        color: var(--primary-bg);
    }
    
    .btn-primary:hover {
        background: #e6dd00;
        transform: translateY(-2px);
    }
    
    .btn-secondary {
        background: transparent;
        color: var(--text-primary);
        border: 2px solid rgba(255, 255, 255, 0.2);
    }
    
    .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.4);
    }
    
    /* Mobile Store Badge Styles Override */
    .store-badge {
        width: min(160px, 80vw);
        height: auto;
        aspect-ratio: 180/53;
    }
    
    .store-badge-link:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .hero-visual {
        order: 2;
        margin-top: 20px;
    }
    
    /* Mobile App Showcase - Fully Responsive */
    .app-showcase {
        width: min(90vw, 350px);
        height: auto;
        aspect-ratio: 0.6;
        margin: 0 auto;
        position: relative;
        max-width: calc(100vw - 40px);
        touch-action: manipulation;
    }
    
    .mockup-carousel {
        width: 100%;
        height: min(75vh, 550px);
        border-radius: 0;
        box-shadow: none;
        overflow: hidden;
        touch-action: pan-y pinch-zoom;
    }
    
    .mockup-slide {
        border-radius: 0;
    }
    
    .mockup-slide img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 0;
        transform: none;
        background: transparent;
    }
    
    /* Mobile Carousel Controls */
    .carousel-dots {
        display: none;
    }
    
    .dot {
        width: clamp(8px, 2.5vw, 10px);
        height: clamp(8px, 2.5vw, 10px);
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: transparent;
        cursor: pointer;
        transition: all 0.3s ease;
        min-width: 36px;
        min-height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    
    .dot::before {
        content: '';
        width: clamp(6px, 2vw, 8px);
        height: clamp(6px, 2vw, 8px);
        border-radius: 50%;
        background: currentColor;
        opacity: 0.3;
        transition: all 0.3s ease;
    }
    
    .dot.active::before {
        background: var(--accent-yellow);
        opacity: 1;
        transform: scale(1.2);
    }
    
    .dot:hover::before {
        opacity: 0.7;
        transform: scale(1.1);
    }
    
    /* Mobile showcase glow effect */
    .showcase-glow {
        display: none !important;
    }

    .phone-mockup {
        width: 250px;
        height: 500px;
    }

    .features {
        padding: 80px 5% 60px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature-card {
        padding: 30px 25px;
    }

    .feature-icon {
        font-size: 3rem;
        padding: 15px;
    }

    .hero-actions {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .stats {
        padding: 60px 5% 40px;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-card {
        padding: 30px 15px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .how-it-works {
        padding: 80px 5% 60px;
    }

    .how-it-works-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .step-card {
        padding: 30px 25px;
    }

    .ai-showcase {
        padding: 80px 5% 60px;
    }

    .ai-features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .ai-feature-card {
        padding: 25px 20px;
    }

    .cta {
        padding: 80px 5% 60px;
    }

    .cta-container {
        padding: 40px 30px;
    }

    footer {
        padding: 40px 5% 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .hero-content p {
        font-size: 1rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-card {
        padding: 25px 15px;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Mobile Features Section */
    .features {
        padding: 60px 20px;
    }
    
    .features-container {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 40px;
        padding: 0 10px;
    }
    
    .section-header h2 {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        line-height: 1.2;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .section-header p {
        font-size: clamp(0.9rem, 4vw, 1.1rem);
        line-height: 1.5;
        color: var(--text-secondary);
        max-width: 90%;
        margin: 0 auto;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .feature-card {
        padding: 25px 20px;
        text-align: center;
        border-radius: 16px;
    }

    .feature-icon {
        font-size: clamp(2rem, 6vw, 2.5rem);
        padding: 12px;
        margin-bottom: 15px;
    }
    
    .feature-card h3 {
        font-size: clamp(1.1rem, 5vw, 1.4rem);
        margin-bottom: 10px;
    }
    
    .feature-card p {
        font-size: clamp(0.85rem, 4vw, 1rem);
        line-height: 1.5;
    }

    /* Mobile How It Works Section */
    .how-it-works {
        padding: 60px 20px;
    }
    
    .how-it-works-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 10px;
    }

    .step-card {
        padding: 25px 20px;
        text-align: center;
        border-radius: 16px;
    }

    .step-number {
        width: clamp(50px, 12vw, 60px);
        height: clamp(50px, 12vw, 60px);
        font-size: clamp(1.2rem, 4vw, 1.5rem);
        margin-bottom: 15px;
    }

    .step-icon {
        font-size: clamp(1.8rem, 5vw, 2rem);
        margin-bottom: 15px;
    }
    
    .step-card h3 {
        font-size: clamp(1.1rem, 5vw, 1.4rem);
        margin-bottom: 10px;
    }
    
    .step-card p {
        font-size: clamp(0.85rem, 4vw, 1rem);
        line-height: 1.5;
    }

    /* Mobile AI Features Section */
    .ai-showcase {
        padding: 60px 20px;
    }
    
    .ai-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .ai-feature-card {
        padding: 25px 20px;
        text-align: center;
        border-radius: 16px;
    }

    .ai-feature-icon {
        font-size: clamp(1.8rem, 5vw, 2rem);
        padding: 12px;
        margin-bottom: 15px;
    }
    
    .ai-feature-card h3 {
        font-size: clamp(1rem, 4.5vw, 1.3rem);
        margin-bottom: 10px;
    }
    
    .ai-feature-card p {
        font-size: clamp(0.85rem, 3.5vw, 1rem);
        line-height: 1.5;
        margin-bottom: 10px;
    }
    
    .ai-feature-tech {
        font-size: clamp(0.75rem, 3vw, 0.9rem);
    }

    /* Mobile CTA Section */
    .cta {
        padding: 60px 20px;
        margin: 0 20px;
        border-radius: 20px;
    }
    
    .cta-container {
        padding: 40px 20px;
        text-align: center;
    }

    .cta h2 {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .cta p {
        font-size: clamp(0.9rem, 4vw, 1.1rem);
        line-height: 1.5;
        margin-bottom: 30px;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta .hero-actions {
        margin-top: 25px;
    }
    
    /* Mobile Footer */
    footer {
        padding: 40px 20px 20px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: clamp(1.1rem, 4vw, 1.3rem);
        margin-bottom: 15px;
    }
    
    .footer-section p,
    .footer-section a {
        font-size: clamp(0.85rem, 3.5vw, 1rem);
        line-height: 1.6;
    }
    
    .social-links {
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
    }
    
    .social-links a {
        font-size: clamp(1.2rem, 4vw, 1.5rem);
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .footer-bottom {
        text-align: center;
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-bottom p {
        font-size: clamp(0.8rem, 3vw, 0.9rem);
    }
}





/* Fine-tune for very small screens */
@media (max-width: 400px) {
    .nav-container {
        padding: 0 15px;
        justify-content: flex-start;
    }
    
    .hero {
        padding: 10px 15px 35px;
    }
    
    .hero-content {
        padding: 15px 5px;
        margin-top: 30px;
    }
    
    .features,
    .how-it-works,
    .ai-showcase {
        padding: 50px 15px;
    }
    
    .section-header,
    .features-grid,
    .how-it-works-grid,
    .ai-features-grid {
        padding: 0 5px;
    }
    
    .cta {
        margin: 0 15px;
        padding: 50px 15px;
    }
    
    .cta-container {
        padding: 30px 15px;
    }
}

/* Ultra small devices optimization */
@media (max-width: 320px) {
    .nav-container {
        padding: 0 10px;
        justify-content: flex-start;
    }
    
    .hero {
        padding: 8px 10px 30px;
    }
    
    .hero-content {
        padding: 10px 5px;
        margin-top: 20px;
    }
    
    .features,
    .how-it-works,
    .ai-showcase {
        padding: 40px 10px;
    }
    
    .cta {
        margin: 0 10px;
        padding: 40px 10px;
    }
    
    .footer {
        padding: 30px 10px 15px;
    }
}



/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
.loading {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 246, 0, 0.05) 0%, rgba(255, 246, 0, 0.02) 100%);
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.step-card {
    text-align: center;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-yellow), #FFD700);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.step-card:hover::before {
    transform: translateX(0);
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-yellow), #FFD700);
    color: var(--primary-bg);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(255, 246, 0, 0.3);
}

.step-icon {
    font-size: 2.5rem;
    color: var(--accent-yellow);
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.step-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* AI Features Showcase */
.ai-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(26, 26, 26, 0.9) 100%);
}

.ai-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.ai-feature-card {
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 246, 0, 0.1);
    transition: all 0.3s ease;
}

.ai-feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 246, 0, 0.3);
    box-shadow: 0 15px 35px rgba(255, 246, 0, 0.1);
}

.ai-feature-icon {
    font-size: 2.5rem;
    color: var(--accent-yellow);
    margin-bottom: 15px;
    display: inline-block;
    padding: 15px;
    background: rgba(255, 246, 0, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.ai-feature-card:hover .ai-feature-icon {
    background: rgba(255, 246, 0, 0.2);
    transform: scale(1.1);
}

.ai-feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.ai-feature-card p {
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.ai-feature-tech {
    font-size: 0.85rem;
    color: var(--accent-yellow);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 16px;
    background: rgba(255, 246, 0, 0.1);
    border-radius: 20px;
    display: inline-block;
}

/* Enhanced Stats Section */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .how-it-works-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .ai-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .step-card {
        padding: 30px 20px;
    }
    
    .ai-feature-card {
        padding: 25px 20px;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
} 