/* Mobile Menu & Navigation System for BEAUT Landing Page */
/* Pixel-perfect mobile experience for 320px-480px screens */

/* ===== RESPONSIVE DISPLAY RULES ===== */
/* Desktop version - show on screens larger than 768px */
@media (min-width: 769px) {
    .mobile-header,
    .mobile-hero,
    .mobile-features,
    .mobile-testimonials,
    .mobile-pricing,
    .mobile-faq,
    .mobile-seo-faq,
    .mobile-bottom-nav {
        display: none !important;
    }
    
    .header,
    .hero,
    .features,
    .testimonials,
    .pricing,
    .faq,
    .seo-faq,
    .footer {
        display: block !important;
    }
}

/* Mobile version - show on screens 768px and smaller */
@media (max-width: 768px) {
    .header,
    .hero,
    .features,
    .testimonials,
    .pricing,
    .faq,
    .seo-faq,
    .footer {
        display: none !important;
    }
    
    .mobile-header,
    .mobile-hero,
    .mobile-features,
    .mobile-testimonials,
    .mobile-pricing,
    .mobile-faq,
    .mobile-seo-faq,
    .mobile-bottom-nav {
        display: block !important;
    }
    
    .mobile-bottom-nav {
        display: flex !important;
    }
}

/* ===== MOBILE HEADER ===== */
.mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    padding-top: env(safe-area-inset-top);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    max-width: 100%;
    margin: 0 auto;
    gap: 12px;
}

.mobile-header-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s ease;
    min-height: 44px;
    padding: 8px;
    border-radius: 12px;
}

.mobile-header-logo:hover {
    color: var(--accent-color);
    background: var(--button-inactive);
}

.mobile-header-logo img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    border-radius: 8px;
    flex-shrink: 0;
}

.mobile-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-theme-toggle {
    position: relative;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    min-height: 44px;
    min-width: 44px;
}

.mobile-theme-toggle:hover {
    background: var(--button-active);
    transform: scale(1.05);
}

.mobile-theme-toggle:active {
    transform: scale(0.95);
}

.mobile-theme-icon {
    width: 18px;
    height: 18px;
    fill: var(--text-primary);
    transition: all 0.3s ease;
}

.sun-icon {
    opacity: 1;
    transform: rotate(0deg);
}

.moon-icon {
    opacity: 0;
    transform: rotate(-90deg);
    position: absolute;
}

/* Dark theme styles */
[data-theme="dark"] .sun-icon {
    opacity: 0;
    transform: rotate(90deg);
}

[data-theme="dark"] .moon-icon {
    opacity: 1;
    transform: rotate(0deg);
}

.mobile-header-btn {
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    background: var(--accent-color);
    border: none;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.2s ease;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.mobile-header-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.mobile-header-btn:active {
    transform: scale(0.98);
}

/* ===== MOBILE MAIN CONTENT ===== */
.mobile-main {
    padding-top: calc(60px + env(safe-area-inset-top));
    padding-bottom: calc(100px + env(safe-area-inset-bottom)); /* Increased from 80px to 100px for more bottom space */
    min-height: 100vh;
    overflow-x: hidden;
}

/* ===== MOBILE HERO SECTION ===== */
.mobile-hero {
    padding: 60px 16px 40px 16px; /* Increased top padding to prevent text going under header */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.mobile-hero-container {
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

.mobile-hero-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    white-space: normal;
    text-align: center;
    line-height: 1.4;
    max-width: 280px;
    margin-top: 20px; /* Added margin-top for more space above the badge */
}

.mobile-hero-badge-icon {
    width: 16px;
    height: 16px;
    fill: var(--accent-color);
    flex-shrink: 0;
}

.mobile-hero-title {
    font-size: calc(28px - 2px); /* Reduced by 2px to fit in 3 lines */
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin: 0;
    word-wrap: break-word;
    hyphens: auto;
    text-align: center; /* Added to center the title text */
}

.mobile-hero-accent {
    color: var(--accent-color);
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mobile-hero-subtitle {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-secondary);
    margin: 0;
    max-width: 320px;
    margin-top: 16px; /* Added margin-top for more space above the subtitle */
}

.mobile-hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    width: 100%;
    max-width: 280px;
}

.mobile-btn {
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s ease;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.mobile-btn-primary {
    background: var(--accent-color);
    color: white;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.mobile-btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(99, 102, 241, 0.4);
}

.mobile-btn-secondary {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
}

.mobile-btn-secondary:hover {
    background: var(--button-active);
    transform: translateY(-1px);
}

.mobile-btn:active {
    transform: scale(0.98);
}

.mobile-hero-visual {
    width: 100%;
    max-width: 320px;
    margin-top: 24px;
}

.mobile-hero-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 8px;
    align-items: center;
    position: relative;
}

.mobile-hero-phone {
    width: 100%;
    aspect-ratio: 9/16;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

/* Staggered positioning for phones */
.mobile-hero-phone:nth-child(1) {
    transform: translateY(0);
}

.mobile-hero-phone:nth-child(2) {
    transform: translateY(8px);
}

.mobile-hero-phone:nth-child(3) {
    transform: translateY(0);
}

.mobile-hero-phone:nth-child(4) {
    transform: translateY(8px);
}

.mobile-hero-phone:nth-child(5) {
    transform: translateY(0);
}

.mobile-hero-phone:nth-child(6) {
    transform: translateY(8px);
}

.mobile-hero-phone:hover {
    transform: translateY(-4px) scale(1.02);
    z-index: 10;
}

.mobile-hero-phone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== MOBILE FEATURES SECTION ===== */
.mobile-features {
    padding: 40px 16px;
    background: var(--bg-secondary);
}

.mobile-features-container {
    max-width: 100%;
    width: 100%;
}

.mobile-features-header {
    text-align: center;
    margin-bottom: 32px;
}

.mobile-features-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin: 0 0 12px 0;
}

.mobile-features-subtitle {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-secondary);
    margin: 0;
}

.mobile-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.mobile-feature-card {
    padding: 20px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: all 0.2s ease;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.mobile-feature-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mobile-feature-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.mobile-feature-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.mobile-feature-description {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-secondary);
    margin: 0;
}

/* ===== MOBILE TESTIMONIALS SECTION ===== */
.mobile-testimonials {
    padding: 40px 16px;
    background: var(--bg-primary);
}

.mobile-testimonials-container {
    max-width: 100%;
    width: 100%;
}

.mobile-testimonials-header {
    text-align: center;
    margin-bottom: 32px;
}

.mobile-testimonials-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin: 0 0 12px 0;
}

.mobile-testimonials-subtitle {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-secondary);
    margin: 0;
}

.mobile-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.mobile-testimonial-card {
    padding: 20px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: all 0.2s ease;
    min-height: 120px;
}

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

.mobile-testimonial-content {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-primary);
    margin: 0 0 16px 0;
}

.mobile-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-testimonial-avatar {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    color: white;
    flex-shrink: 0;
}

.mobile-testimonial-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.mobile-testimonial-info p {
    font-size: 12px;
    color: var(--text-secondary);
    margin: 0;
}

/* ===== MOBILE PRICING SECTION ===== */
.mobile-pricing {
    padding: 40px 16px;
    background: var(--bg-secondary);
}

.mobile-pricing-container {
    max-width: 100%;
    width: 100%;
}

.mobile-pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.mobile-pricing-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin: 0 0 12px 0;
}

.mobile-pricing-subtitle {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-secondary);
    margin: 0;
}

.mobile-pricing-card {
    padding: 24px 20px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.mobile-pricing-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    background: var(--accent-color);
    color: white;
    font-size: 12px;
    font-weight: 600;
    border-radius: 12px;
}

.mobile-pricing-info {
    margin-bottom: 24px;
}

.mobile-pricing-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 12px 0;
}

.mobile-pricing-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 0 0 8px 0;
}

.mobile-pricing-future-price {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0 0 20px 0;
}

.mobile-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.mobile-pricing-features li {
    padding: 8px 0;
    font-size: 14px;
    line-height: 1.4;
    color: var(--text-primary);
    padding-left: 20px;
    position: relative;
}

.mobile-pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 600;
}

.mobile-pricing-btn {
    width: 100%;
    margin-bottom: 24px;
}

.mobile-pricing-token-info {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-token-header h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 4px 0;
}

.mobile-token-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0 0 16px 0;
}

.mobile-token-description {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-secondary);
    margin: 0 0 16px 0;
}

.mobile-token-benefits {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-token-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    min-height: 48px;
}

.mobile-token-benefit-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.mobile-token-benefit span:last-child {
    font-size: 14px;
    line-height: 1.4;
    color: var(--text-primary);
}

/* ===== MOBILE FAQ SECTION ===== */
.mobile-faq {
    padding: 40px 16px;
    padding-bottom: 80px; /* Added extra padding to prevent overlap with mobile menu */
    background: var(--bg-primary);
}

.mobile-faq-container {
    max-width: 100%;
    width: 100%;
}

.mobile-faq-header {
    text-align: center;
    margin-bottom: 32px;
}

.mobile-faq-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin: 0 0 12px 0;
}

.mobile-faq-subtitle {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-secondary);
    margin: 0;
}

.mobile-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-faq-item {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
}

.mobile-faq-question {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    transition: all 0.2s ease;
}

.mobile-faq-question:hover {
    background: var(--button-inactive);
}

.mobile-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-faq-answer p {
    padding: 0 20px 20px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-secondary);
    margin: 0;
}

.mobile-faq-icon {
    width: 20px;
    height: 20px;
    fill: var(--text-secondary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

/* ===== MOBILE SEO FAQ SECTION ===== */
.mobile-seo-faq {
    padding: 40px 16px;
    padding-bottom: 80px; /* Added extra padding to prevent overlap with mobile menu */
    background: var(--bg-secondary);
}

.mobile-seo-faq-container {
    max-width: 100%;
    width: 100%;
}

.mobile-seo-faq-header {
    text-align: center;
    margin-bottom: 32px;
}

.mobile-seo-faq-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin: 0 0 12px 0;
}

.mobile-seo-faq-subtitle {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-secondary);
    margin: 0;
}

.mobile-seo-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-seo-faq-item {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
}

.mobile-seo-faq-question {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    transition: all 0.2s ease;
}

.mobile-seo-faq-question:hover {
    background: var(--button-inactive);
}

.mobile-seo-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-seo-faq-answer p {
    padding: 0 20px 20px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-secondary);
    margin: 0;
}

.mobile-seo-faq-icon {
    width: 20px;
    height: 20px;
    fill: var(--text-secondary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

/* ===== MOBILE BOTTOM NAVIGATION ===== */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-top: 1px solid var(--glass-border);
    padding: 8px 16px;
    padding-bottom: calc(8px + env(safe-area-inset-bottom));
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 8px;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px;
    text-decoration: none;
    color: var(--text-secondary);
    transition: all 0.2s ease;
    border-radius: 12px;
    min-height: 48px;
    min-width: 48px;
    justify-content: center;
    flex: 1;
}

.mobile-nav-item:hover {
    color: var(--text-primary);
    background: var(--button-inactive);
}

.mobile-nav-item-active {
    color: var(--accent-color);
    background: var(--button-active);
}

.mobile-nav-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: all 0.2s ease;
}

.mobile-nav-label {
    font-size: 10px;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 360px) {
    .mobile-header-container {
        padding: 8px 12px;
        gap: 8px;
    }
    
    .mobile-header-logo {
        font-size: 16px;
        gap: 6px;
    }
    
    .mobile-header-logo img {
        width: 24px;
        height: 24px;
    }
    
    .mobile-header-btn {
        padding: 8px 12px;
        font-size: 12px;
        min-width: 60px;
    }
    
    .mobile-hero {
        padding: 50px 12px 32px 12px; /* Adjusted padding for small screens */
    }
    
    .mobile-hero-badge {
        margin-top: 15px; /* Added margin-top for small screens */
    }
    
    .mobile-hero-title {
        font-size: 22px; /* Reduced for small screens */
        text-align: center; /* Added to center the title text on small screens */
    }
    
    .mobile-hero-subtitle {
        font-size: 14px;
        margin-top: 12px; /* Added margin-top for small screens */
    }
    
    .mobile-btn {
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .mobile-features,
    .mobile-testimonials,
    .mobile-pricing,
    .mobile-faq,
    .mobile-seo-faq {
        padding: 32px 12px;
        padding-bottom: 70px; /* Added extra padding for small screens */
    }
    
    .mobile-features-title,
    .mobile-testimonials-title,
    .mobile-pricing-title,
    .mobile-faq-title,
    .mobile-seo-faq-title {
        font-size: 20px;
    }
    
    .mobile-feature-card,
    .mobile-testimonial-card {
        padding: 16px;
    }
    
    .mobile-pricing-card {
        padding: 20px 16px;
    }
    
    .mobile-bottom-nav {
        padding: 6px 12px;
        padding-bottom: calc(6px + env(safe-area-inset-bottom));
    }
    
    .mobile-nav-item {
        padding: 6px;
        min-height: 44px;
        min-width: 44px;
    }
    
    .mobile-nav-icon {
        width: 18px;
        height: 18px;
    }
    
    .mobile-nav-label {
        font-size: 9px;
    }

    .mobile-hero-gallery {
        gap: 6px;
    }
    
    .mobile-hero-phone {
        border-radius: 16px;
    }
    
    /* Adjusted staggered positioning for small screens */
    .mobile-hero-phone:nth-child(2) {
        transform: translateY(6px);
    }
    
    .mobile-hero-phone:nth-child(4) {
        transform: translateY(6px);
    }
    
    .mobile-hero-phone:nth-child(6) {
        transform: translateY(6px);
    }
}

/* ===== LANDSCAPE ORIENTATION ===== */
@media (max-width: 480px) and (orientation: landscape) {
    .mobile-hero {
        min-height: 70vh;
        padding: 20px 16px;
    }
    
    .mobile-hero-container {
        gap: 20px;
    }
    
    .mobile-hero-title {
        font-size: 20px;
        text-align: center; /* Added to center the title text in landscape */
    }
    
    .mobile-hero-subtitle {
        font-size: 14px;
    }
    
    .mobile-hero-actions {
        flex-direction: row;
        gap: 12px;
        justify-content: center;
        max-width: none;
    }
    
    .mobile-btn {
        max-width: 160px;
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .mobile-features,
    .mobile-testimonials,
    .mobile-pricing,
    .mobile-faq,
    .mobile-seo-faq {
        padding: 30px 16px;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    .mobile-btn,
    .mobile-feature-card,
    .mobile-testimonial-card,
    .mobile-nav-item,
    .mobile-theme-toggle {
        transition: none;
    }
    
    .mobile-faq-answer,
    .mobile-seo-faq-answer {
        transition: none;
    }
}

/* ===== TOUCH DEVICE OPTIMIZATIONS ===== */
@media (any-hover: none) {
    .mobile-btn:hover,
    .mobile-feature-card:hover,
    .mobile-testimonial-card:hover,
    .mobile-nav-item:hover,
    .mobile-theme-toggle:hover {
        transform: none;
    }
    
    .mobile-btn:active,
    .mobile-feature-card:active,
    .mobile-testimonial-card:active,
    .mobile-nav-item:active,
    .mobile-theme-toggle:active {
        transform: scale(0.98);
    }
}

/* ===== HIGH DPI DISPLAYS ===== */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .mobile-hero-phone img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .mobile-header,
    .mobile-bottom-nav,
    .mobile-btn,
    .mobile-theme-toggle {
        display: none !important;
    }
    
    .mobile-hero {
        min-height: auto;
        padding: 20px 0;
    }
    
    .mobile-features,
    .mobile-testimonials,
    .mobile-pricing,
    .mobile-faq,
    .mobile-seo-faq {
        padding: 20px 0;
        page-break-inside: avoid;
    }
    
    .mobile-feature-card,
    .mobile-testimonial-card,
    .mobile-pricing-card {
        box-shadow: none;
        border: 1px solid var(--border-color);
        page-break-inside: avoid;
    }
    
    * {
        color: black !important;
        background: white !important;
    }
} 