/* Rich Design Mobile Responsive Styles */

@media (max-width: 768px) {
    /* Particle Effects Mobile Optimization */
    .particle {
        width: 2px;
        height: 2px;
    }
    
    .particle:nth-child(n+6) {
        display: none; /* Reduce particles on mobile for performance */
    }
    
    /* Morphing Shapes Mobile */
    .morph-shape {
        filter: blur(60px);
        opacity: 0.3;
    }
    
    .morph-shape:nth-child(3) {
        display: none; /* Remove third shape on mobile */
    }
    
    /* Hero Section Mobile */
    .hero {
        min-height: 100vh;
        padding: 80px 0 40px;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }
    
    .hero-title-number {
        font-size: clamp(2.2rem, 10vw, 3rem);
    }
    
    /* Premium Card Mobile */
    .premium-card {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .premium-card::before {
        height: 3px;
    }
    
    /* Flow Section Mobile Enhancement */
    .flow-number {
        width: 50px !important;
        height: 50px !important;
        min-width: 50px !important;
        max-width: 50px !important;
        font-size: 1.2rem;
    }
    
    .flow-content {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .flow-title {
        font-size: 1.1rem;
    }
    
    .flow-connector {
        margin: 10px auto;
        height: 40px;
    }
    
    /* Glass Card Mobile */
    .glass-card {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    
    /* Liquid Button Mobile */
    .liquid-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .btn-line {
        font-size: 1.05rem;
        padding: 1rem 2rem;
    }
    
    .btn-line .btn-icon {
        width: 22px;
        height: 22px;
    }
    
    /* Feature Cards Mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        margin-bottom: 0;
    }
    
    /* Industry Cards Mobile */
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .industry-card {
        padding: 1.5rem;
    }
    
    /* Pricing Options Mobile */
    .options-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .option-card {
        padding: 1.2rem;
    }
    
    /* Comparison Table Mobile */
    .comparison-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .comparison-table {
        min-width: 600px;
    }
    
    /* Trust Badges Mobile */
    .trust-badges {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .trust-badge {
        width: 100%;
        justify-content: center;
    }
    
    /* CTA Section Mobile */
    .cta-content {
        padding: 2rem 1.5rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-benefits {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    /* Disable hover effects on touch devices */
    @media (hover: none) {
        .hover-lift-rotate:hover,
        .hover-lift:hover,
        .hover-magnetic:hover {
            transform: none;
        }
        
        .premium-card:hover,
        .feature-card:hover,
        .industry-card:hover,
        .option-card:hover {
            transform: translateY(0);
        }
    }
    
    /* Text Effects Mobile */
    .text-gradient-animated {
        font-size: 1.8rem;
    }
    
    /* Floating CTA Mobile */
    .floating-cta {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-cta-button {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .floating-cta-icon {
        width: 20px;
        height: 20px;
    }
    
    /* FAQ Mobile */
    .faq-question {
        padding: 1.2rem;
        font-size: 0.95rem;
    }
    
    .faq-answer {
        padding: 0 1.2rem;
    }
    
    /* Testimonial Cards Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-impact {
        padding: 0.8rem;
    }
    
    .impact-number {
        font-size: 1.5rem;
    }
    
    /* Section Spacing Mobile */
    .section {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Container Mobile */
    .container {
        padding: 0 1rem;
    }
}

/* Tablet Specific Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    /* Features Grid Tablet */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Industries Grid Tablet */
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Options Grid Tablet */
    .options-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* Testimonials Grid Tablet */
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Flow Timeline Tablet */
    .flow-timeline {
        max-width: 700px;
    }
    
    /* Hero Title Tablet */
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-title-number {
        font-size: 3.5rem;
    }
}

/* Small Mobile (iPhone SE, etc.) */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-title-number {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .btn-line {
        font-size: 1rem;
        padding: 0.9rem 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .flow-content {
        padding: 1.2rem;
    }
    
    .flow-title {
        font-size: 1rem;
    }
    
    .flow-text {
        font-size: 0.85rem;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 60px 0 30px;
    }
    
    .hero-badges {
        margin-top: 1rem;
    }
    
    .trust-badges {
        flex-direction: row;
        padding: 0.8rem;
    }
    
    .trust-badge {
        font-size: 0.8rem;
    }
}

/* High Resolution Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .premium-card::before,
    .flow-connector,
    .neon-border::before {
        transform: scaleY(0.5);
        transform-origin: top;
    }
}

/* Print Styles */
@media print {
    .floating-cta,
    .header,
    .mobile-nav,
    .page-loader,
    .cursor-glow,
    .particle,
    .morph-shape {
        display: none !important;
    }
    
    .hero {
        background: white !important;
        color: black !important;
    }
    
    .premium-card,
    .glass-card {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
}