/* ===========================================
   PROGO MOBILITY - COMPLETE MOBILE CSS
   Updated with Brand Colors & Fonts
   Brand Colors: Lava Burst #f04c28, Deep Graphite #0e0e11, White #ffffff, Volt Ash #7f7f7f
   Brand Fonts: Poppins, Space Grotesk
   Optimized for devices 768px and below
   ========================================== */

/* Import Brand Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* Mobile-First Media Queries */
@media (max-width: 768px) {
    
    /* ========== BASE MOBILE STYLES ========== */
    body {
        font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
        font-size: 16px;
        line-height: 1.5;
        overflow-x: hidden;
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
    }
    
    * {
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
    }
    
    /* ========== MOBILE NAVIGATION ========== */
    .navbar {
        height: 80px;
        padding: 0;
        /* Keep original transparent behavior */
        background: transparent;
        backdrop-filter: none;
        border-bottom: none;
        box-shadow: none;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    /* Scrolled state - white background */
    .navbar.scrolled {
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-container {
        padding: 0 1.5rem;
        height: 80px;
    }
    
    /* Logo colors - white by default, dark when scrolled */
    .logo-image {
        height: 40px; /* Slightly smaller on mobile */
        filter: none;
    }
    
    .navbar.scrolled .logo-image {
        filter: brightness(0); /* White on mobile transparent nav */
    }
    
    /* Mobile menu logo */
    .mobile-nav-logo .logo-image {
        height: 35px;
        filter: none; /* Always show original colors in mobile menu */
    }
    
    .mobile-nav-logo .logo {
        justify-content: center;
        gap: 0;
    }
    
    /* Hide desktop navigation properly */
    .nav-menu {
        display: none !important;
    }
    
    /* Show mobile hamburger */
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        padding: 0.5rem;
        border-radius: 8px;
        background: transparent;
        border: none;
        z-index: 1001;
        transition: background 0.3s ease;
    }
    
    .hamburger:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .navbar.scrolled .hamburger:hover {
        background: rgba(0, 0, 0, 0.05);
    }
    
    /* Hamburger lines - white by default, dark when scrolled */
    .hamburger span {
        width: 28px;
        height: 3px;
        background: white;
        margin: 4px 0;
        transition: all 0.3s ease;
        border-radius: 2px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    }
    
    .navbar.scrolled .hamburger span {
        background: #0e0e11;
        box-shadow: none;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(9px, 9px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Mobile Menu Overlay - Fixed Positioning */
    .mobile-nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        height: 100dvh; /* Dynamic viewport height for mobile */
        background: rgba(14, 14, 17, 0.8);
        backdrop-filter: blur(20px);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1rem;
        overflow: hidden;
    }
    
    .mobile-nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-nav-menu {
        background: white;
        border-radius: 20px;
        padding: 1.5rem;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(240, 76, 40, 0.1);
        transform: translateY(100vh); /* Start from bottom */
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        position: relative;
        width: 100%;
        max-width: 300px;
        max-height: 80vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        margin: auto;
    }
    
    .mobile-nav-overlay.active .mobile-nav-menu {
        transform: translateY(0); /* Slide to center */
    }
    
    /* Mobile menu logo */
    .mobile-nav-logo {
        text-align: center;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
        border-bottom: 2px solid #f5f5f5;
    }
    
    .mobile-nav-logo .logo {
        color: #0e0e11;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .mobile-nav-logo .logo-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .mobile-nav-logo .logo-text {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 1.125rem;
        text-shadow: none;
    }
    
    /* Mobile navigation links */
    .mobile-nav-link {
        display: block;
        color: #2d2d30;
        font-size: 1rem;
        font-weight: 600;
        text-decoration: none;
        margin: 0.25rem 0;
        padding: 0.875rem 1rem;
        border-radius: 12px;
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        border: 2px solid transparent;
        text-align: center;
        position: relative;
        overflow: hidden;
        min-height: 44px; /* Touch target minimum */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(240, 76, 40, 0.1), transparent);
        transition: left 0.5s;
    }
    
    .mobile-nav-link:hover::before {
        left: 100%;
    }
    
    .mobile-nav-link:hover,
    .mobile-nav-link:focus {
        color: white;
        background: linear-gradient(135deg, #f04c28 0%, #d73e20 100%);
        border-color: #f04c28;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(240, 76, 40, 0.3);
    }
    
    .mobile-nav-link.active {
        color: #f04c28;
        background: rgba(240, 76, 40, 0.1);
        border-color: #f04c28;
        font-weight: 700;
    }
    
    .mobile-nav-link:active {
        transform: translateY(0);
        transition: transform 0.1s;
    }
    
    /* Close button */
    .mobile-nav-close {
        position: absolute;
        top: 0.75rem;
        right: 0.75rem;
        width: 32px;
        height: 32px;
        background: #f5f5f5;
        border: none;
        border-radius: 50%;
        font-size: 1.25rem;
        font-weight: 300;
        color: #7f7f7f;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        z-index: 10;
        line-height: 1;
    }
    
    .mobile-nav-close:hover,
    .mobile-nav-close:focus {
        background: #f04c28;
        color: white;
        transform: rotate(90deg) scale(1.1);
    }
    
    /* ========== MOBILE HERO CAROUSEL ========== */
    .hero-carousel {
        height: 100vh;
        height: 100dvh; /* Dynamic viewport height for mobile */
        position: relative;
        overflow: hidden;
    }
    
    .hero-slide {
        height: 100vh;
        height: 100dvh;
    }
    
    .hero-content {
        padding: 0 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        min-height: 100vh;
        min-height: 100dvh;
    }
    
    .hero-content-inner {
        width: 100%;
        max-width: none;
    }
    
    .hero-title {
        font-family: 'Space Grotesk', sans-serif;
        font-size: clamp(2rem, 8vw, 3.5rem) !important;
        line-height: 1.1;
        margin-bottom: 1rem;
        letter-spacing: -0.02em;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.25rem) !important;
        margin-bottom: 2rem;
        padding: 0 1rem;
        line-height: 1.4;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 2rem;
        padding: 0 1rem;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 280px;
        padding: 1rem 2rem;
        font-size: 0.9rem;
        justify-content: center;
        min-height: 50px;
        border-radius: 25px;
    }
    
    .hero-btn.primary {
        background: linear-gradient(135deg, #f04c28 0%, #d73e20 100%);
        box-shadow: 0 8px 32px rgba(240, 76, 40, 0.3);
    }
    
    .hero-btn.primary:hover {
        background: linear-gradient(135deg, #ff6b47 0%, #f04c28 100%);
        box-shadow: 0 15px 40px rgba(240, 76, 40, 0.4);
    }
    
    .hero-btn svg {
        width: 18px;
        height: 18px;
    }
    
    /* Mobile Hero Navigation */
    .hero-navigation {
        display: none; /* Hide navigation arrows on mobile */
    }
    
    .hero-indicators {
        bottom: 6rem;
        padding: 0.75rem 1.5rem;
        background: rgba(14, 14, 17, 0.3);
        border-radius: 30px;
        backdrop-filter: blur(15px);
    }
    
    .hero-indicator {
        width: 10px;
        height: 10px;
        margin: 0 0.25rem;
    }
    
    .hero-progress {
        height: 3px;
        background: linear-gradient(90deg, #f04c28 0%, #ff6b47 100%);
    }
    
    .scroll-hint {
        right: 1.5rem;
        bottom: 2rem;
    }
    
    .scroll-text {
        font-size: 0.75rem;
    }
    
    /* ========== MOBILE HERO QUOTE SECTION ========== */
    .hero-quote-section {
        padding: 3rem 0;
        margin-top: 1rem;
    }
    
    .quote-container {
        padding: 0 1.5rem;
    }
    
    .quote-text {
        font-family: 'Space Grotesk', sans-serif;
        font-size: clamp(1.25rem, 5vw, 2rem) !important;
        line-height: 1.3;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .quote-mark {
        font-family: 'Space Grotesk', serif;
        font-size: 6rem !important;
        color: #f04c28;
    }
    
    .quote-mark.opening {
        top: -1.5rem;
        left: -0.5rem;
    }
    
    .quote-mark.closing {
        bottom: -1.5rem;
        right: -0.5rem;
    }
    
    .quote-attribution {
        gap: 0.5rem;
        margin-top: 1.5rem;
    }
    
    .attribution-line {
        width: 30px;
        background: linear-gradient(90deg, transparent 0%, #f04c28 50%, transparent 100%);
    }
    
    .attribution-text {
        font-size: 0.875rem;
        letter-spacing: 1px;
        color: #7f7f7f;
    }
    
    /* Hide floating elements on mobile */
    .floating-element {
        display: none;
    }
    
    /* ========== MOBILE PRODUCT SECTION ========== */
    .product-section {
        padding: 4rem 0;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .section-header {
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
        letter-spacing: 1.5px;
        color: #7f7f7f;
    }
    
    .falcon-x-container {
        padding: 2rem 1rem;
        border-radius: 16px;
        margin: 0 0.5rem;
    }
    
    .product-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .product-gallery {
        order: 1;
        margin-bottom: 1rem;
    }
    
    .product-info {
        order: 2;
    }
    
    .product-main-image {
        height: 300px;
        margin-bottom: 1rem;
    }
    
    .gallery-nav {
        width: 35px;
        height: 35px;
        background: white;
        border: 1px solid #d4d4d4;
    }
    
    .gallery-nav:hover {
        background: #f04c28;
        border-color: #f04c28;
    }
    
    .nav-prev {
        left: 0.5rem;
    }
    
    .nav-next {
        right: 0.5rem;
    }
    
    .gallery-dots {
        margin-top: 0.75rem;
        gap: 0.375rem;
    }
    
    .gallery-dot {
        width: 8px;
        height: 8px;
        background: #d4d4d4;
    }
    
    .gallery-dot.active {
        background: #f04c28;
    }
    
    .price-badge {
        position: static !important;
        display: inline-block;
        margin-bottom: 1rem;
        padding: 0.5rem 1.25rem;
        font-size: 1rem;
        border-radius: 25px;
        background: #f04c28;
        box-shadow: 0 8px 24px rgba(240, 76, 40, 0.3);
    }
    
    .product-title {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        line-height: 1.1;
        color: #0e0e11;
    }
    
    .product-specs {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .spec-card {
        padding: 1rem 0.75rem;
        border-radius: 8px;
        background: white;
        border: 1px solid #e5e5e5;
    }
    
    .spec-card:hover {
        border-color: #f04c28;
        background: white;
        box-shadow: 0 4px 12px rgba(240, 76, 40, 0.15);
    }
    
    .spec-value {
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
        color: #f04c28;
    }
    
    .spec-label {
        font-size: 0.8rem;
        color: #7f7f7f;
    }
    
    /* ========== MOBILE FEATURES SECTION ========== */
    .features-section {
        padding: 4rem 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .feature-content {
        order: 2;
        padding: 0 1rem;
    }
    
    .feature-content h2 {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        color: #0e0e11;
    }
    
    .animated-text-container {
        margin: 1rem 0;
    }
    
    .animated-text {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 1.75rem;
        line-height: 1.3;
        text-align: center;
        color: #0e0e11;
    }
    
    .phrase-container {
        min-width: 200px;
        margin-left: 0.25rem;
    }
    
    .phrase-1 {
        color: #f04c28;
        text-shadow: 0 2px 4px rgba(240, 76, 40, 0.3);
    }
    
    .phrase-2 {
        color: #52B788;
        text-shadow: 0 2px 4px rgba(82, 183, 136, 0.3);
    }
    
    .phrase-3 {
        color: #d73e20;
        text-shadow: 0 2px 4px rgba(215, 62, 32, 0.3);
    }
    
    .features-carousel {
        order: 1;
        margin: 0 1rem;
        border-radius: 12px;
        background: white;
        border: 1px solid #e5e5e5;
    }
    
    .features-carousel-container {
        height: 250px;
        border-radius: 12px;
    }
    
    .feature-nav-btn {
        width: 35px;
        height: 35px;
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid #d4d4d4;
    }
    
    .feature-nav-btn:hover {
        background: #f04c28;
        border-color: #f04c28;
    }
    
    .features-carousel-nav {
        padding: 0 0.5rem;
    }
    
    .features-carousel-indicators {
        bottom: 0.5rem;
        padding: 0.375rem 0.75rem;
        gap: 0.375rem;
        background: rgba(14, 14, 17, 0.3);
    }
    
    .feature-indicator {
        width: 8px;
        height: 8px;
        background: rgba(255, 255, 255, 0.5);
    }
    
    .feature-indicator.active {
        background: white;
    }
    
    /* ========== MOBILE FOUNDER SECTION ========== */
    .founder-section {
        padding: 4rem 0;
    }
    
    .founder-title {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 2rem;
        margin-bottom: 2rem;
        color: #0e0e11;
    }
    
    .founder-details {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        margin-top: 1.5rem;
    }
    
    .founder-image {
        width: 200px;
        height: 200px;
        margin: 0 auto;
        border: 4px solid #f04c28;
        box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    }
    
    .founder-name {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
        color: #0e0e11;
    }
    
    .founder-role {
        font-size: 1rem;
        margin-bottom: 1rem;
        color: #f04c28;
    }
    
    .founder-quote {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 1.125rem;
        margin: 1rem 0;
        padding: 1rem;
        border-radius: 8px;
        border-left: 4px solid #f04c28;
        background: #fafafa;
        color: #2d2d30;
    }
    
    .founder-bio {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        text-align: left;
        padding: 0 1rem;
        color: #7f7f7f;
    }
    
    .founder-social {
        justify-content: center;
        gap: 0.75rem;
        flex-wrap: wrap;
    }
    
    .social-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
        border-radius: 6px;
        flex: 1;
        min-width: 120px;
        max-width: 150px;
        background: #f5f5f5;
        color: #2d2d30;
        border: 1px solid #d4d4d4;
    }
    
    .social-btn:hover {
        background: #f04c28;
        color: white;
        border-color: #f04c28;
    }
    
    /* ========== MOBILE ENGAGEMENT SECTION ========== */
    .engagement-section {
        padding: 4rem 0;
    }
    
    .engagement-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .engagement-card {
        padding: 2rem 1.5rem;
        border-radius: 12px;
        margin: 0 1rem;
        background: white;
        border: 1px solid #e5e5e5;
    }
    
    .engagement-card h3 {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        color: #0e0e11;
    }
    
    .engagement-card p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        color: #7f7f7f;
    }
    
    .support-btn {
        padding: 1rem 2rem;
        border-radius: 6px;
        font-size: 1rem;
        width: 100%;
        max-width: 250px;
        background: #f04c28;
        color: white;
    }
    
    .support-btn:hover {
        background: #d73e20;
    }
    
    .email-form {
        flex-direction: column;
        gap: 0.75rem;
        max-width: 100%;
        margin: 0;
    }
    
    .email-input {
        padding: 1rem;
        font-size: 1rem;
        border-radius: 6px;
        width: 100%;
        border: 1px solid #d4d4d4;
        font-family: 'Poppins', sans-serif;
    }
    
    .email-input:focus {
        border-color: #f04c28;
        box-shadow: 0 0 0 3px rgba(240, 76, 40, 0.1);
    }
    
    .email-btn {
        padding: 1rem 1.5rem;
        border-radius: 6px;
        font-size: 1rem;
        min-height: 50px;
        background: #f04c28;
        color: white;
        font-family: 'Poppins', sans-serif;
    }
    
    .email-btn:hover {
        background: #d73e20;
    }
    
    .checkbox-label {
        font-size: 0.875rem;
        text-align: left;
        margin-top: 0.5rem;
        color: #7f7f7f;
    }
    
    /* ========== MOBILE CONTACT SECTION ========== */
    .contact-section {
        padding: 4rem 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-card {
        padding: 0 1rem;
    }
    
    .contact-card h3 {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        color: #0e0e11;
    }
    
    .contact-card p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        color: #7f7f7f;
    }
    
    .timeline-btn {
        padding: 1rem 2rem;
        border-radius: 6px;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
        background: #f5f5f5;
        color: #0e0e11;
        border: 1px solid #d4d4d4;
    }
    
    .timeline-btn:hover {
        background: #f04c28;
        color: white;
        border-color: #f04c28;
    }
    
    .contact-form {
        max-width: 100%;
        margin: 0;
        padding: 0 1rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-input,
    .form-textarea {
        padding: 1rem;
        font-size: 1rem;
        border-radius: 6px;
        width: 100%;
        border: 1px solid #d4d4d4;
        font-family: 'Poppins', sans-serif;
    }
    
    .form-input:focus,
    .form-textarea:focus {
        border-color: #f04c28;
        box-shadow: 0 0 0 3px rgba(240, 76, 40, 0.1);
    }
    
    .form-textarea {
        min-height: 120px;
        resize: vertical;
    }
    
    .submit-btn {
        padding: 1rem;
        font-size: 1rem;
        border-radius: 6px;
        min-height: 50px;
        background: #f04c28;
        color: white;
        font-family: 'Poppins', sans-serif;
    }
    
    .submit-btn:hover {
        background: #d73e20;
    }
    
    /* ========== MOBILE FOOTER ========== */
    .footer {
        padding: 2rem 0 1.5rem;
        background: #0e0e11;
        color: #9a9a9a;
    }
    
    .footer-content {
        text-align: center;
        padding: 0 1rem;
    }
    
    .footer-title {
        font-family: 'Space Grotesk', sans-serif;
        color: white;
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }
    
    .social-links {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 0.875rem;
        background: #1a1a1d;
        color: #9a9a9a;
    }
    
    .social-link:hover {
        background: #f04c28;
        color: white;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.875rem;
        border-top: 1px solid #1a1a1d;
        color: #7f7f7f;
    }
    
    /* ========== MOBILE UTILITIES ========== */
    
    /* Touch-friendly sizing */
    button,
    .btn,
    .hero-btn,
    .social-btn,
    input[type="submit"] {
        min-height: 44px; /* iOS/Android touch target minimum */
        min-width: 44px;
    }
    
    /* Improved text readability */
    h1, h2, h3, h4, h5, h6 {
        line-height: 1.2;
        word-wrap: break-word;
        font-family: 'Space Grotesk', sans-serif;
    }
    
    p, .hero-subtitle, .quote-text {
        line-height: 1.4;
        word-wrap: break-word;
        font-family: 'Poppins', sans-serif;
    }
    
    /* Smooth scrolling */
    html {
        scroll-behavior: smooth;
    }
    
    /* Hide animations on reduced motion */
    @media (prefers-reduced-motion: reduce) {
        .fade-in,
        .slide-in-left,
        .slide-in-right,
        .floating-element,
        .animate-in {
            opacity: 1 !important;
            transform: none !important;
            transition: none !important;
            animation: none !important;
        }
    }
    
    /* Force show content (override any animation delays) */
    .fade-in,
    .slide-in-left,
    .slide-in-right {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    
    /* Video modal mobile styles */
    .video-modal .video-modal-content {
        margin: 1rem;
        padding: 1rem;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .video-modal iframe,
    .video-modal video {
        height: 250px !important;
    }
    
    .video-modal-close {
        top: 0.5rem !important;
        right: 0.5rem !important;
        width: 35px !important;
        height: 35px !important;
        font-size: 1.5rem !important;
    }
    
    /* Notification mobile styles */
    .notification {
        top: 80px !important;
        right: 1rem !important;
        left: 1rem !important;
        width: auto !important;
        max-width: none !important;
        font-size: 0.875rem !important;
    }
}

/* ========== EXTRA SMALL MOBILE + VIEWPORT FIXES ========== */
@media (max-width: 480px) {
    
    /* Force mobile menu to stay within viewport */
    .mobile-nav-overlay {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        height: 100dvh !important;
        max-height: 100vh !important;
        max-height: 100dvh !important;
        padding: 0.75rem !important;
        overflow: hidden !important;
    }
    
    .mobile-nav-menu {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        margin: auto !important;
        max-width: 280px !important;
        max-height: 85vh !important;
        max-height: 85dvh !important;
        width: calc(100vw - 1.5rem) !important;
        transform: translateY(100vh) !important;
        padding: 1.25rem !important;
    }
    
    .mobile-nav-overlay.active .mobile-nav-menu {
        transform: translateY(0) !important;
    }
    
    .logo-image {
        height: 35px;
    }
    
    .mobile-nav-logo .logo-image {
        height: 30px;
    }
    
    .mobile-nav-link {
        font-size: 0.95rem !important;
        padding: 0.75rem !important;
        margin: 0.2rem 0 !important;
    }
    
    .mobile-nav-close {
        top: 0.5rem !important;
        right: 0.5rem !important;
        width: 28px !important;
        height: 28px !important;
        font-size: 1.125rem !important;
    }
    
    .hero-title {
        font-size: clamp(1.75rem, 7vw, 2.5rem) !important;
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 3.5vw, 1.125rem) !important;
    }
    
    .hero-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .quote-text {
        font-size: clamp(1.125rem, 4.5vw, 1.5rem) !important;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .feature-content h2 {
        font-size: 1.5rem;
    }
    
    .animated-text {
        font-size: 1.5rem;
    }
    
    .founder-title {
        font-size: 1.75rem;
    }
    
    .engagement-card h3,
    .contact-card h3 {
        font-size: 1.25rem;
    }
    
    .falcon-x-container {
        margin: 0;
        border-radius: 12px;
    }
    
    .engagement-card,
    .contact-card {
        margin: 0 0.5rem;
        padding: 1.5rem 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .hero-indicators {
        bottom: 4rem;
    }
    
    .scroll-hint {
        display: none; /* Hide on very small screens */
    }
}

/* ========== LANDSCAPE MOBILE SPECIFIC ========== */
@media (max-width: 768px) and (orientation: landscape) {
    
    .hero-carousel {
        height: 100vh;
        height: 100dvh;
    }
    
    .hero-content {
        padding: 1rem 1.5rem;
        min-height: 100vh;
        min-height: 100dvh;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 6vw, 2.5rem) !important;
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: clamp(0.875rem, 3vw, 1.125rem) !important;
        margin-bottom: 1.5rem;
    }
    
    .hero-actions {
        margin-top: 1rem;
        gap: 0.75rem;
    }
    
    .hero-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
        max-width: 200px;
    }
    
    .hero-indicators {
        bottom: 2rem;
    }
}

/* ========== HIGH DPI DISPLAYS ========== */
@media (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2),
       (max-width: 768px) and (min-resolution: 192dpi) {
    
    /* Optimize for retina displays */
    .logo-icon,
    .gallery-nav,
    .feature-nav-btn,
    .social-link {
        border: 0.5px solid rgba(0,0,0,0.1);
    }
    
    .product-main-image,
    .features-carousel-container {
        backface-visibility: hidden;
        transform: translateZ(0);
    }
}

/* ========== ACCESSIBILITY IMPROVEMENTS ========== */
@media (max-width: 768px) {
    
    /* Focus styles for touch devices */
    button:focus,
    .btn:focus,
    .hero-btn:focus,
    input:focus,
    textarea:focus {
        outline: 2px solid #f04c28;
        outline-offset: 2px;
    }
    
    /* Improve contrast for better readability */
    .hero-subtitle,
    .quote-text {
        text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    }
    
    /* Ensure minimum touch targets */
    .gallery-dot,
    .hero-indicator,
    .feature-indicator {
        min-width: 44px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .gallery-dot::before,
    .hero-indicator::before,
    .feature-indicator::before {
        content: '';
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: currentColor;
    }
}

/* ========== PERFORMANCE OPTIMIZATIONS ========== */
@media (max-width: 768px) {
    
    /* Disable expensive effects on mobile */
    .falcon-x-container::before {
        display: none;
    }
    
    /* Simplify animations for better performance */
    .hero-slide,
    .feature-slide,
    .carousel-slide {
        transform: translateZ(0);
        backface-visibility: hidden;
    }
    
    /* Optimize image rendering */
    img,
    .product-img,
    .feature-full-image,
    .founder-photo {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: optimize-contrast;
        transform: translateZ(0);
    }
}

/* ========== PRINT STYLES FOR MOBILE ========== */
@media print and (max-width: 768px) {
    
    .navbar,
    .hero-navigation,
    .hero-indicators,
    .mobile-nav-overlay,
    .video-modal,
    .notification {
        display: none !important;
    }
    
    .hero-carousel {
        height: auto !important;
        page-break-inside: avoid;
    }
    
    .hero-content {
        position: static !important;
        color: #0e0e11 !important;
        background: white !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
}

/* ========== WEBKIT SPECIFIC MOBILE FIXES ========== */
@media (max-width: 768px) {
    
    /* Fix for iOS Safari bottom bar */
    .hero-carousel {
        min-height: -webkit-fill-available;
    }
    
    /* Fix for iOS input zoom */
    input[type="email"],
    input[type="text"],
    textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Smooth scrolling for iOS */
    .features-carousel-container,
    .video-modal-content {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Fix for iOS button styling */
    button,
    .btn,
    .hero-btn {
        -webkit-appearance: none;
        appearance: none;
    }
}

/* ===========================================
   MOBILE INDICATORS SIZE FIX
   ========================================== */

@media (max-width: 768px) {
    
    /* ========== HERO INDICATORS - MOBILE ========== */
    .hero-indicators {
        bottom: 4rem;
        padding: 0.25rem 0.75rem; /* Much smaller padding */
        background: rgba(14, 14, 17, 0.2);
        border-radius: 12px; /* Smaller border radius */
        backdrop-filter: blur(10px);
        gap: 0.25rem; /* Very small gap */
    }
    
    .hero-indicator {
        width: 4px !important; /* Much smaller */
        height: 4px !important; 
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.5);
        cursor: pointer;
        transition: all 0.2s ease;
        border: none;
        /* Large invisible touch target */
        position: relative;
        padding: 8px; /* Creates 20px total touch area */
        margin: 0;
    }
    
    .hero-indicator::before {
        content: '';
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.5);
        transition: all 0.2s ease;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .hero-indicator.active {
        background: transparent;
    }
    
    .hero-indicator.active::before {
        background: white;
        width: 4px;
        height: 4px;
        box-shadow: 0 0 2px rgba(255, 255, 255, 0.6);
    }
    
    /* ========== GALLERY DOTS - MOBILE ========== */
    .gallery-dots {
        display: flex;
        justify-content: center;
        gap: 0.25rem; /* Very small gap */
        margin-top: 0.5rem;
    }
    
    .gallery-dot {
        width: 4px !important; /* Very small */
        height: 4px !important; 
        border-radius: 50%;
        background: #d4d4d4;
        cursor: pointer;
        transition: all 0.2s ease;
        position: relative;
        padding: 6px; /* Creates 16px total touch area */
        margin: 0;
    }
    
    .gallery-dot::before {
        content: '';
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: #d4d4d4;
        transition: all 0.2s ease;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .gallery-dot.active {
        background: transparent;
    }
    
    .gallery-dot.active::before {
        background: #f04c28;
        width: 4px;
        height: 4px;
    }
    
    /* ========== FEATURE INDICATORS - MOBILE ========== */
    .features-carousel-indicators {
        bottom: 0.5rem; 
        padding: 0.25rem 0.5rem; /* Much smaller padding */
        gap: 0.25rem; /* Very small gap */
        background: rgba(14, 14, 17, 0.2);
        border-radius: 10px; /* Smaller border radius */
        backdrop-filter: blur(8px);
    }
    
    .feature-indicator {
        width: 4px !important; /* Very small */
        height: 4px !important; 
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.6);
        cursor: pointer;
        transition: all 0.2s ease;
        border: none;
        position: relative;
        padding: 6px; /* Creates 16px total touch area */
        margin: 0;
    }
    
    .feature-indicator::before {
        content: '';
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.6);
        transition: all 0.2s ease;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .feature-indicator.active {
        background: transparent;
    }
    
    .feature-indicator.active::before {
        background: white;
        width: 4px;
        height: 4px;
    }
    
    /* ========== CAROUSEL NAVIGATION BUTTONS - MOBILE ========== */
    .hero-nav-btn,
    .carousel-btn {
        width: 40px !important; /* Smaller buttons */
        height: 40px !important;
        font-size: 1.125rem; /* Smaller icon */
    }
    
    .gallery-nav {
        width: 32px !important; /* Even smaller for gallery */
        height: 32px !important;
        font-size: 1rem;
    }
    
    .feature-nav-btn {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.875rem;
    }
    
    /* ========== PROGRESS BAR - MOBILE ========== */
    .hero-progress {
        height: 2px; /* Thinner progress bar */
    }
    
    /* ========== SCROLL HINT - MOBILE ========== */
    .scroll-hint {
        right: 1rem; /* Closer to edge */
        bottom: 1.5rem;
        font-size: 0.75rem; /* Smaller text */
    }
    
    .scroll-text {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 480px) {
    
    /* Even smaller indicators for very small screens */
    .hero-indicator,
    .gallery-dot,
    .feature-indicator {
        width: 3px !important;
        height: 3px !important;
        padding: 6px; /* Smaller touch area for small screens */
    }
    
    .hero-indicator::before,
    .gallery-dot::before,
    .feature-indicator::before {
        width: 3px;
        height: 3px;
    }
    
    .hero-indicator.active::before,
    .gallery-dot.active::before,
    .feature-indicator.active::before {
        width: 3px;
        height: 3px;
    }
    
    .hero-indicators,
    .features-carousel-indicators {
        padding: 0.2rem 0.4rem;
        gap: 0.2rem;
    }
    
    .gallery-dots {
        gap: 0.2rem;
        margin-top: 0.4rem;
    }
    
    /* Hide scroll hint on very small screens */
    .scroll-hint {
        display: none;
    }
    
    /* Smaller navigation buttons */
    .hero-nav-btn,
    .carousel-btn {
        width: 36px !important;
        height: 36px !important;
        font-size: 1rem;
    }
    
    .gallery-nav {
        width: 28px !important;
        height: 28px !important;
        font-size: 0.875rem;
    }
    
    .feature-nav-btn {
        width: 28px !important;
        height: 28px !important;
        font-size: 0.75rem;
    }
}

/* ========== ACCESSIBILITY IMPROVEMENTS ========== */
@media (max-width: 768px) {
    
    /* Ensure indicators are accessible but visually small */
    .hero-indicator,
    .gallery-dot,
    .feature-indicator {
        /* Add focus styles for keyboard navigation */
        outline: none;
    }
    
    .hero-indicator:focus::before,
    .gallery-dot:focus::before,
    .feature-indicator:focus::before {
        outline: 2px solid #f04c28;
        outline-offset: 2px;
    }
    
    /* Active state improvements */
    .hero-indicator.active,
    .gallery-dot.active,
    .feature-indicator.active {
        /* Maintain accessibility without visual clutter */
        position: relative;
    }
    
    /* Reduce motion for users who prefer it */
    @media (prefers-reduced-motion: reduce) {
        .hero-indicator,
        .gallery-dot,
        .feature-indicator,
        .hero-indicator::before,
        .gallery-dot::before,
        .feature-indicator::before {
            transition: none !important;
            animation: none !important;
        }
    }
}

/* ========== LANDSCAPE MOBILE SPECIFIC ========== */
@media (max-width: 768px) and (orientation: landscape) {
    
    .hero-indicators {
        bottom: 2rem; /* Adjust for landscape */
    }
    
    .features-carousel-indicators {
        bottom: 0.5rem;
    }
    
    /* Hide some elements in landscape for better space usage */
    .scroll-hint {
        display: none;
    }
}

/* ===========================================
   MOBILE CSS UPDATES - CENTERED TEXT AND BUTTON FIX
   ========================================== */

@media (max-width: 768px) {
    
    /* ========== FEATURES SECTION - CENTER TEXT ========== */
    .features-section .feature-content {
        text-align: center; /* Center all text in feature content */
    }
    
    .features-section .feature-content h2 {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .animated-text-container {
        text-align: center;
        margin: 1rem 0;
    }
    
    .animated-text {
        text-align: center;
        justify-content: center;
        align-items: center;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .base-text {
        text-align: center;
        display: block;
        width: 100%;
    }
    
    .phrase-container {
        text-align: center;
        display: block;
        width: 100%;
        min-width: auto;
        margin-left: 0;
    }
    
    .animated-phrase {
        text-align: center;
        display: block;
        width: 100%;
    }
    
    /* ========== ENGAGEMENT SECTION - CENTER SUPPORT BUTTON ========== */
    .engagement-section .engagement-card {
        text-align: center; /* Center all content in engagement cards */
    }
    
    .engagement-section .support-btn {
        display: block;
        margin: 0 auto; /* Center the button */
        text-align: center;
        width: 100%;
        max-width: 250px;
    }
    
    /* ========== EMAIL FORM - SEND EMAIL BUTTON ========== */
    .email-form .email-btn {
        padding: 1rem 1.5rem;
        border-radius: 6px;
        font-size: 1rem;
        min-height: 50px;
        min-width: auto; /* Remove fixed width */
        width: 100%; /* Full width on mobile */
        background: #f04c28;
        color: white;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .email-form .email-btn:hover {
        background: #d73e20;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(240, 76, 40, 0.3);
    }
    
    /* Update the email form layout for mobile */
    .email-form {
        flex-direction: column;
        gap: 0.75rem;
        max-width: 100%;
        margin: 0;
        width: 100%;
    }
    
    .email-input {
        padding: 1rem;
        font-size: 1rem;
        border-radius: 6px;
        width: 100%;
        border: 2px solid #d4d4d4;
        transition: border-color 0.3s ease;
    }
    
    .email-input:focus {
        outline: none;
        border-color: #f04c28;
    }
}

/* ========== EXTRA SMALL MOBILE ADJUSTMENTS ========== */
@media (max-width: 480px) {
    
    /* Ensure text stays centered on very small screens */
    .features-section .feature-content,
    .features-section .animated-text-container,
    .features-section .animated-text {
        text-align: center !important;
    }
    
    /* Smaller button padding for very small screens */
    .email-form .email-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .support-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}