/* --- 1. GLOBAL VARIABLES & RESET --- */
    :root {
        --primary: #FF4D4D; /* Vibrant Red-Orange */
        --primary-dark: #cc0000;
        --secondary: #0F172A; /* Deep Navy */
        --accent: #FFB703; /* Warm Yellow */
        --light-bg: #F8FAFC;
        --text-dark: #1E293B;
        --text-muted: #64748B;
        
        /* Gradients */
        --gradient-primary: linear-gradient(135deg, #FF4D4D 0%, #F9CB28 100%);
        --gradient-dark: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
        
        /* Effects */
        --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
        --shadow-glow: 0 0 20px rgba(255, 77, 77, 0.3);
        --radius-xl: 24px;
        --radius-lg: 16px;
    }

    body {
        font-family: 'Plus Jakarta Sans', sans-serif;
        color: var(--text-dark);
        background-color: #fff;
        overflow-x: hidden;
        line-height: 1.6;
    }

    h1, h2, h3, h4, h5, h6 {
        font-family: 'Outfit', sans-serif;
        font-weight: 700;
        color: var(--secondary);
        letter-spacing: -0.02em;
    }

    /* Smooth Scroll */
    html {
        scroll-behavior: smooth;
    }

    /* --- 2. COMPONENT UTILITIES --- */
    .section-padding {
        padding: 100px 0;
    }

    .text-gradient {
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    /* Custom Buttons */
    .btn-custom {
        padding: 12px 32px;
        border-radius: 50px;
        font-weight: 600;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        z-index: 1;
        overflow: hidden;
        border: none;
    }

    .btn-primary-gradient {
        background: var(--gradient-primary);
        color: white;
        box-shadow: var(--shadow-glow);
    }

    .btn-primary-gradient:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(255, 77, 77, 0.4);
        color: white;
    }

    .btn-outline-dark {
        border: 2px solid var(--secondary);
        color: var(--secondary);
        background: transparent;
    }

    .btn-outline-dark:hover {
        background: var(--secondary);
        color: white;
        transform: translateY(-2px);
    }

    /* --- 3. ANIMATION CLASSES --- */
    .reveal-up {
        opacity: 0;
        transform: translateY(40px);
        transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
    }
    
    .reveal-up.active {
        opacity: 1;
        transform: translateY(0);
    }

    .stagger-1 { transition-delay: 0.1s; }
    .stagger-2 { transition-delay: 0.2s; }
    .stagger-3 { transition-delay: 0.3s; }

    /* --- 4. NAVIGATION --- */
    .navbar {
        padding: 20px 0;
        transition: all 0.3s ease;
    }

    .navbar.scrolled {
        padding: 12px 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: var(--shadow-sm);
    }

    .navbar-brand {
        font-size: 1.5rem;
        font-weight: 800;
        color: var(--secondary) !important;
    }

    .nav-link {
        font-weight: 500;
        color: var(--secondary) !important;
        margin: 0 10px;
        position: relative;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: var(--primary);
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }

    .nav-link:hover::after, .nav-link.active::after {
        width: 100%;
    }

    /* --- 5. HERO SECTION --- */
    .hero-section {
        padding-top: 140px;
        padding-bottom: 80px;
        background: radial-gradient(circle at top right, #FFF5F5 0%, #FFFFFF 50%);
        position: relative;
        overflow: hidden;
    }

    /* Abstract decorative blobs */
    .hero-blob {
        position: absolute;
        border-radius: 50%;
        filter: blur(60px);
        z-index: 0;
        opacity: 0.6;
    }
    .blob-1 { top: -10%; right: -5%; width: 400px; height: 400px; background: #FFD6D6; }
    .blob-2 { bottom: 10%; left: -10%; width: 300px; height: 300px; background: #FFF4C9; }

    .hero-content {
        position: relative;
        z-index: 1;
    }

    .hero-title {
        font-size: 3.5rem;
        line-height: 1.1;
        margin-bottom: 1.5rem;
    }

    .hero-image-wrapper {
        position: relative;
        z-index: 1;
        perspective: 1000px;
    }

    .hero-phone {
        width: 100%;
        max-width: 320px;
        border-radius: 40px;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        border: 8px solid var(--secondary);
        background: #000;
        animation: float 6s ease-in-out infinite;
        display: block;
        margin: 0 auto;
    }

    .hero-float-card {
        position: absolute;
        background: white;
        padding: 15px;
        border-radius: 12px;
        box-shadow: var(--shadow-lg);
        display: flex;
        align-items: center;
        gap: 10px;
        animation: float-delayed 5s ease-in-out infinite;
    }
    
    .card-pos-1 { top: 20%; right: 10%; }
    .card-pos-2 { bottom: 20%; left: 5%; animation-delay: 1s; }

    @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-20px); }
    }
    @keyframes float-delayed {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-15px); }
    }

    /* --- 6. FEATURES SECTION --- */
    .feature-card {
        background: white;
        padding: 2.5rem 2rem;
        border-radius: var(--radius-xl);
        border: 1px solid #f0f0f0;
        transition: all 0.3s ease;
        height: 100%;
        position: relative;
        overflow: hidden;
    }

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
        border-color: transparent;
    }

    .feature-icon-box {
        width: 60px;
        height: 60px;
        background: #FFF5F5;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        color: var(--primary);
        margin-bottom: 1.5rem;
        transition: all 0.3s ease;
    }

    .feature-card:hover .feature-icon-box {
        background: var(--gradient-primary);
        color: white;
    }

    /* --- 7. SCREENSHOTS CAROUSEL --- */
    .screenshots-section {
        background: var(--secondary);
        color: white;
        overflow: hidden;
    }

    .scroller-container {
        display: flex;
        gap: 2rem;
        overflow-x: auto;
        padding: 2rem 5% 4rem;
        scroll-snap-type: x mandatory;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE/Edge */
    }
    .scroller-container::-webkit-scrollbar { display: none; }

    .screenshot-item {
        flex: 0 0 auto;
        width: 260px;
        scroll-snap-align: center;
        transition: transform 0.3s ease;
    }

    .phone-frame {
        border-radius: 35px;
        overflow: hidden;
        border: 6px solid #334155;
        background: #000;
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
        aspect-ratio: 9/19.5;
    }

    .phone-frame img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* --- 8. POSTERS & SAMPLES --- */
    .poster-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    .poster-card {
        position: relative;
        border-radius: var(--radius-lg);
        overflow: hidden;
        cursor: pointer;
        aspect-ratio: 3/4;
        box-shadow: var(--shadow-sm);
    }

    .poster-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .poster-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .poster-card:hover img { transform: scale(1.1); }
    .poster-card:hover .poster-overlay { opacity: 1; }

    /* --- 9. PRICING --- */
    .pricing-card {
        background: white;
        border-radius: var(--radius-xl);
        padding: 3rem;
        box-shadow: var(--shadow-sm);
        border: 1px solid #eee;
        position: relative;
        transition: all 0.3s;
    }

    .pricing-card.featured {
        border: 2px solid var(--primary);
        box-shadow: var(--shadow-lg);
        transform: scale(1.02);
    }

    .pricing-badge {
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--secondary);
        color: white;
        padding: 6px 20px;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 600;
        letter-spacing: 0.05em;
        text-transform: uppercase;
    }

    .price-value {
        font-size: 3.5rem;
        font-weight: 800;
        color: var(--secondary);
        line-height: 1;
    }

    .feature-list li {
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--text-muted);
    }
    .feature-list i { color: var(--primary); }

    /* --- 10. CTA SECTION --- */
    .cta-wrapper {
        background: var(--gradient-primary);
        border-radius: var(--radius-xl);
        padding: 4rem 2rem;
        box-shadow: 0 20px 40px rgba(255, 77, 77, 0.2);
    }

    .glass-form {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        padding: 2rem;
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .form-control-custom {
        background: rgba(255, 255, 255, 0.9);
        border: none;
        padding: 12px 15px;
        border-radius: 8px;
        margin-bottom: 15px;
    }
    .form-control-custom:focus {
        background: #fff;
        box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.4);
        outline: none;
    }

    /* --- 11. FOOTER --- */
    footer {
        background: var(--secondary);
        color: white;
        padding: 4rem 0 1rem;
    }
    .footer-link {
        color: #94a3b8;
        text-decoration: none;
        margin-bottom: 10px;
        display: block;
        transition: 0.3s;
    }
    .footer-link:hover { color: white; padding-left: 5px; }

    /* Mobile Responsive Tweaks */
    @media (max-width: 991px) {
        .hero-title { font-size: 2.5rem; }
        .hero-image-wrapper { margin-top: 3rem; transform: scale(0.9); }
        .pricing-card.featured { transform: scale(1); margin-top: 2rem; }
        .screenshot-item { width: 200px; }
    }
    
    .poster-card.skeleton {
        aspect-ratio: 3 / 4;
        /*height: 270px;*/
        background: #e6e6e6;
        border-radius: 12px;
        animation: pulse 1.2s infinite ease-in-out;
    }
    
    @keyframes pulse {
        0% { opacity: 0.6; }
        50% { opacity: 1; }
        100% { opacity: 0.6; }
    }
    
    .video-item.skeleton {
        height: 285px;
        background: #e6e6e6;
        border-radius: 12px;
        animation: videoPulse 1.2s infinite ease-in-out;
    }
    
    @keyframes videoPulse {
        0% { opacity: 0.6; }
        50% { opacity: 1; }
        100% { opacity: 0.6; }
    }
    
    .video-grid {
        display: grid;
        gap: 20px;
        grid-template-columns: repeat(auto-fill, minmax(285px, 1fr));
    }

    .video-item {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .video-container {
        width: 100%;
        border-radius: 12px;
        background: #000;
    }

    .video-item {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        border-radius: 12px;
    }

    .video-title {
        margin-top: 10px;
        color: #111;
        font-size: 1.1rem;
        font-weight: 600;
        text-align: center;
        transition: color 0.3s ease;
    }

    /* Responsive tweaks */
    @media (max-width: 768px) {
        .video-title {
            font-size: 1rem;
            }
        }

    @media (max-width: 480px) {
        .video-section {
            padding: 10px;
        }

        .video-grid {
            gap: 10px;
            grid-template-columns: 1fr;
        }
    }
    .video-section {
        max-width: 1400px;
        margin: 0 auto;
        padding: 20px;
    }
    .rating-box {
        display: flex;
        align-items: center;
        gap: 12px;
        font-family: inherit;
    }
    
    .rating-circles {
        display: flex;
        gap: -8px;
        position: relative;
    }
    
    .circle {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        display: inline-block;
    }
    
    .c1 {
        background: radial-gradient(circle, #ff9800, #ff5722);
    }
    
    .c2 {
        background: radial-gradient(circle, #ffb300, #ff9800);
        margin-left: -10px;
    }
    
    .c3 {
        background: radial-gradient(circle, #ff7a00, #ff3d00);
        margin-left: -10px;
    }
    
    .rating-stars i {
        color: #ff7a00;
        font-size: 18px;
    }
    
    .rating-text {
        font-size: 16px;
        color: #444;
        font-weight: 500;
    }

    #modalImage {
        width: 100%;
        height: auto;
        max-width: 100vw;
        max-height: 90vh;
        object-fit: contain;
    }

   /* Wrapper */
    .stats-wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    /* Keep 10K+ and 1M+ always in one line */
    .stats-wrapper > div:nth-child(1),
    .stats-wrapper > div:nth-child(2) {
        flex: 0 0 auto;
    }
    
    /* Desktop rating stays inline */
    .rating-box {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    /* Mobile rules */
    @media (max-width: 576px) {
    
        /* Move rating block to new line */
        .rating-box {
            flex: 0 0 100%;
            flex-direction: column;
            align-items: flex-start; /* left aligned */
            margin-top: 10px;
        }
    
        /* Move text to new line under stars */
        .rating-text {
            display: block;
            margin-top: 5px;
        }
    }

   .testimonials-section {
        background: #fff7ef;
    }
    
    .testimonial-card {
        background: #ffffff;
        padding: 25px;
        border-radius: 18px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        transition: transform 0.3s ease;
    }
    
    .testimonial-card:hover {
        transform: translateY(-5px);
    }
    
    .stars {
        color: #ff8c00;
        font-size: 20px;
    }
    
    .testimonial-text {
        font-size: 15px;
        line-height: 1.6;
        color: #444;
        text-align: left;
    }
    
    .avatar {
        width: 48px;
        height: 48px;
        background: #ff8c00;
        color: #fff;
        border-radius: 50%;
        font-weight: bold;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
    }
    
    hr {
        background: #eaeaea;
    }

    
    /* ========== PARTNERS SLIDER CSS ========== */
    
    .partners-slider-container {
        position: relative;
        overflow: hidden;
        padding: 40px 0;
        max-width: 1400px;
        margin: 0 auto;
    }
    
    .section-title {
        text-align: center;
        margin-bottom: 50px;
    }
    
    .section-title h5 {
        color: #FF4D4D;
        font-weight: bold;
        text-transform: uppercase;
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .section-title h2 {
        font-size: 36px;
        font-weight: 700;
        color: #0F172A;
        margin-bottom: 10px;
    }
    
    .section-title p {
        color: #64748B;
        font-size: 16px;
    }
    
    .partners-slider-wrapper {
        overflow: hidden;
        position: relative;
        padding: 30px 60px;
        background: white;
        border-radius: 24px;
    }
    
    .partners-slider-track {
        display: flex;
        gap: 40px;
        animation: slidePartners 40s linear infinite;
        width: max-content;
    }
    
    .partner-card {
        flex-shrink: 0;
        /*width: 180px;*/
        height: 150px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.4s ease;
        /*box-shadow: 0 2px 8px rgba(0,0,0,0.05);*/
        border: 2px solid transparent;
    }
    
    .partner-card img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }
    
    /* Animation Keyframe */
    @keyframes slidePartners {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-180px * 8 - 40px * 8));
        }
    }
    
    /* Pause on hover */
    .partners-slider-wrapper:hover .partners-slider-track {
        animation-play-state: paused;
    }
    
    /* Navigation Arrows */
    .slider-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 45px;
        height: 45px;
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        z-index: 10;
        transition: all 0.3s ease;
        border: 2px solid #eee;
        color: #0F172A;
    }
    
    .slider-nav:hover {
        background: #FF4D4D;
        color: white;
        transform: translateY(-50%) scale(1.1);
        border-color: #FF4D4D;
    }
    
    .slider-nav.prev {
        left: 0;
    }
    
    .slider-nav.next {
        right: 0;
    }
    
    /* Mobile Responsive */
    @media (max-width: 768px) {
        .partner-card {
            /*width: 140px;*/
            height: 120px;
        }
        
        .slider-nav {
            width: 35px;
            height: 35px;
            font-size: 14px;
        }
        
        .partners-slider-wrapper {
            padding: 30px 50px;
        }
        
        .section-title h2 {
            font-size: 28px;
        }
    }
    
    .h4-heading {
        font-size: 1.6rem;
        font-weight: 900;
        font-family: 'Outfit', sans-serif;
        color: var(--secondary);
        letter-spacing: -0.02em;
    }
    
    .h5-heading {
        font-size: 1.5rem;
        font-weight: 900;
        font-family: 'Outfit', sans-serif;
        color: var(--secondary);
        letter-spacing: -0.02em;
    }
    
    .h3-heading {
        font-size: 1.75rem;
        font-weight: 900;
        font-family: 'Outfit', sans-serif;
        color: var(--secondary);
        letter-spacing: -0.02em;
    }
    
    .section-label-3{
        font-size: 1.75rem;
        font-weight: 900;
        font-family: 'Outfit', sans-serif;
        color: var(--secondary);
        letter-spacing: -0.02em;
    }
    
    .section-label-4{
        font-size: 1.6rem;
        font-weight: 900;
        font-family: 'Outfit', sans-serif;
        color: var(--secondary);
        letter-spacing: -0.02em;
    }
    
    .section-label-5{
        font-size: 1.5rem;
        font-weight: 900;
        font-family: 'Outfit', sans-serif;
        color: var(--secondary);
        letter-spacing: -0.02em;
    }
    
    
    .max__width{
        max-width: 1000px;
    }