/* Mobile-optimized stylesheet - CONSISTENT SPACING SYSTEM */

/* Base mobile optimizations */
@media screen and (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        font-size: 16px; /* Prevent zoom on iOS */
        box-sizing: border-box;
    }
    
    *, *::before, *::after {
        box-sizing: border-box;
    }
    
    /* UNIFIED CONTAINER SYSTEM */
    .container {
        padding: 0 24px;
        max-width: 100%;
        margin: 0 auto;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* CONSISTENT SECTION SPACING - All sections 64px top/bottom */
    section {
        padding: 64px 0;
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    /* UNIFIED TYPOGRAPHY SPACING */
    .section-title {
        font-size: 1.95rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .section-subtitle {
        font-size: 1.05rem;
        line-height: 1.5;
        margin-bottom: 2.5rem;
        opacity: 0.9;
        text-align: center;
    }
    
    /* CONSISTENT GRID SPACING - All grids 2rem gap */
    .features-grid,
    .modules-grid,
    .bonuses-grid,
    .faq-grid,
    .testimonials-grid,
    .facebook-comments-grid,
    .problem-grid {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        width: 100%;
        margin: 0 auto;
        padding: 0;
        box-sizing: border-box;
        align-items: center;
    }
    
    /* UNIFIED CARD SYSTEM - All cards consistent styling */
    .problem-card,
    .feature-card,
    .module-card,
    .bonus-card,
    .faq-item,
    .testimonial-card,
    .facebook-comment-card,
    .pricing-card {
        width: 100%;
        max-width: 380px;
        margin: 0 auto;
        box-sizing: border-box;
        border-radius: 12px;
        overflow: hidden;
        transition: transform 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    /* Card hover effects */
    .testimonial-card:hover,
    .facebook-comment-card:hover,
    .feature-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    }
    
    /* NAVIGATION */
    .navbar {
        padding: 0.75rem 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(15px);
    }
    
    .nav-container {
        padding: 0 24px;
        gap: 1rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-cta {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        border-radius: 6px;
    }
    
    /* HERO SECTION */
    .hero {
        padding: 80px 0;
        min-height: auto;
        display: flex;
        align-items: center;
    }
    
    .hero-container {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 24px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.1rem;
        line-height: 1.15;
        margin-bottom: 1rem;
        font-weight: 800;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        opacity: 0.9;
    }
    
    .hero-badge {
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .badge-text {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        font-weight: 600;
        border-radius: 6px;
        display: inline-block;
    }
    
    .hero-stats {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
        margin: 1.5rem 0;
        flex-wrap: wrap;
    }
    
    .stat {
        min-width: 80px;
        text-align: center;
    }
    
    .stat-number {
        font-size: 1.7rem;
        display: block;
        font-weight: 700;
        line-height: 1.2;
    }
    
    .stat-label {
        font-size: 0.8rem;
        opacity: 0.8;
        margin-top: 0.3rem;
    }
    
    /* UNIFIED CTA BUTTON SYSTEM */
    .cta-primary,
    .pricing-cta,
    .nav-cta,
    .cta-secondary,
    .order-button,
    button[class*="cta"] {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
        font-weight: 700;
        border-radius: 8px;
        max-width: 300px;
        margin: 0 auto;
        display: block;
        text-align: center;
        width: 100%;
        line-height: 1.3;
        letter-spacing: 0.3px;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        box-sizing: border-box;
    }
    
    .cta-primary.large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        max-width: 320px;
    }
    
    .cta-subtitle {
        margin-top: 0.8rem;
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
        color: white;
        opacity: 0.85;
        text-align: center;
        font-weight: 500;
        line-height: 1.4;
    }
    
    /* MOBILE VIDEO DISPLAY */
    .desktop-only,
    .desktop-only-cta,
    .hero-visual {
        display: none !important;
    }
    
    .hero-video-mobile {
        display: block !important;
        margin: 1.5rem 0;
        width: 100%;
    }
    
    .hero-video-mobile .video-preview {
        max-width: 100%;
        width: 100%;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }
    
    .hero-video-mobile .video-thumbnail,
    .hero-video-mobile video {
        width: 100%;
        aspect-ratio: 16/9;
        border-radius: 12px;
        background: #1a1a2e;
        object-fit: cover;
        min-height: 200px;
    }
    
    .hero-video-mobile .video-overlay {
        background: rgba(0, 0, 0, 0.8);
        padding: 0.8rem;
        text-align: center;
        margin-top: 0.5rem;
        border-radius: 6px;
    }
    
    .hero-video-mobile .video-overlay span {
        color: white;
        font-size: 0.9rem;
        font-weight: 600;
    }
    
    /* GUARANTEE DISPLAY SYSTEM */
    .desktop-guarantee {
        display: none !important;
    }
    
    .mobile-guarantee {
        display: block !important;
        margin: 1rem auto;
        max-width: 300px;
        text-align: center;
        background: rgba(78, 205, 196, 0.08);
        border: 1px solid rgba(78, 205, 196, 0.2);
        border-radius: 8px;
        padding: 1rem;
    }
    
    .mobile-guarantee .guarantee-item {
        display: block;
        font-size: 0.8rem;
        line-height: 1.5;
        opacity: 0.9;
        margin: 0.4rem 0;
        padding: 0.2rem 0;
        color: #4ecdc4;
        font-weight: 500;
    }
    
    /* URGENCY BADGES */
    .urgency-badges {
        display: flex;
        gap: 0.8rem;
        margin: 1rem 0;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .urgency-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
        border-radius: 6px;
        line-height: 1.2;
        background: rgba(220, 20, 60, 0.1);
        border: 1px solid rgba(220, 20, 60, 0.3);
        color: #dc143c;
        font-weight: 600;
    }
    
    /* PROBLEM CARDS SYSTEM - FORCE EVEN SPACING */
    .problem {
        padding: 64px 0 !important;
        overflow-x: hidden !important;
    }
    
    .problem .container {
        padding: 0 24px !important;
        margin: 0 auto !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .problem .section-title {
        margin-bottom: 2.5rem !important;
        text-align: center !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .problem-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
        align-items: center !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
        justify-content: center !important;
    }
    
    .problem-card,
    .problem-card:first-child,
    .problem-card:nth-child(2),
    .problem-card:nth-child(3),
    .problem-card:nth-child(4) {
        padding: 0 !important;
        min-height: 300px !important;
        position: relative !important;
        background: rgba(255, 255, 255, 0.02) !important;
        width: 100% !important;
        max-width: 380px !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
        border-radius: 12px !important;
        overflow: hidden !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
        transform: none !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        flex: none !important;
        flex-basis: auto !important;
    }
    
    .problem-card::before,
    .problem-card:first-child::before,
    .problem-card:nth-child(2)::before,
    .problem-card:nth-child(3)::before {
        display: none !important;
    }
    
    .card-header-image {
        height: 180px !important;
        width: 100% !important;
        object-fit: cover !important;
        object-position: center center !important;
        border-radius: 12px 12px 0 0 !important;
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
        background: transparent !important;
    }
    
    .problem-card h3,
    .problem-card:first-child h3,
    .problem-card:nth-child(2) h3,
    .problem-card:nth-child(3) h3 {
        font-size: 1.3rem !important;
        padding: 1.5rem 1.5rem 0.8rem 1.5rem !important;
        margin: 0 !important;
        color: #4ecdc4 !important;
        font-weight: 700 !important;
        line-height: 1.3 !important;
        text-align: center !important;
        background: transparent !important;
        border: none !important;
        transform: none !important;
    }
    
    .problem-card p,
    .problem-card:first-child p,
    .problem-card:nth-child(2) p,
    .problem-card:nth-child(3) p {
        padding: 0 1.5rem 1.5rem 1.5rem !important;
        margin: 0 !important;
        line-height: 1.6 !important;
        font-size: 0.95rem !important;
        opacity: 0.9 !important;
        text-align: center !important;
        background: transparent !important;
        border: none !important;
        transform: none !important;
        color: inherit !important;
    }
    
    .problem-callout {
        margin: 2rem auto !important;
        width: 100% !important;
        max-width: 380px !important;
        padding: 0 !important;
        text-align: center !important;
    }
    
    /* Force fourth card to match others exactly on mobile */
    .problem-card:nth-child(4) {
        padding: 0 !important;
        min-height: 300px !important;
        position: relative !important;
        background: rgba(255, 255, 255, 0.02) !important;
        width: 100% !important;
        max-width: 380px !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
        border-radius: 12px !important;
        overflow: hidden !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
        transform: none !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        flex: none !important;
        flex-basis: auto !important;
    }
    
    .problem-card:nth-child(4) .card-header-image {
        height: 220px !important; /* Taller for mobile to ensure coverage */
        width: 120% !important; /* Oversized to crop built-in padding */
        object-fit: cover !important;
        object-position: center center !important;
        border-radius: 12px 12px 0 0 !important;
        margin: -20px -10% 0 -10% !important; /* Negative margins to center and crop */
        padding: 0 !important;
        background: transparent !important;
        display: block !important;
        transform: scale(1.15) !important; /* Larger scale to crop padding on mobile */
    }
    
    .problem-card:nth-child(4) h3 {
        font-size: 1.3rem !important;
        padding: 1.5rem 1.5rem 0.8rem 1.5rem !important;
        margin: 0 !important;
        color: #4ecdc4 !important;
        font-weight: 700 !important;
        line-height: 1.3 !important;
        text-align: center !important;
        background: transparent !important;
        border: none !important;
        transform: none !important;
    }
    
    .problem-card:nth-child(4) p {
        padding: 0 1.5rem 1.5rem 1.5rem !important;
        margin: 0 !important;
        line-height: 1.6 !important;
        font-size: 0.95rem !important;
        opacity: 0.9 !important;
        text-align: center !important;
        background: transparent !important;
        border: none !important;
        transform: none !important;
        color: inherit !important;
    }
    
    .callout-image {
        width: 100% !important;
        height: auto !important;
        border-radius: 12px !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        display: block !important;
        margin: 0 auto !important;
    }
    
    /* VIDEO SHOWCASE PREMIUM MOBILE - FIXED SPACING */
    .video-showcase-premium {
        margin: 3rem 0;
        padding: 0;
    }
    
    .video-showcase-premium h3 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .video-showcase-premium > p {
        font-size: 1rem;
        margin-bottom: 2.5rem;
        text-align: center;
        padding: 0 1rem;
        line-height: 1.5;
        opacity: 0.9;
    }
    
    .video-showcase-premium > div[style*="grid"] {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    
    .video-showcase-premium > div[style*="grid"] > div {
        margin: 0 auto;
        max-width: 380px;
        width: 100%;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.02);
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .video-showcase-premium video {
        height: 200px;
        width: 100%;
        object-fit: cover;
        border-radius: 12px 12px 0 0;
    }
    
    .video-showcase-premium h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
        padding: 1.2rem 1.2rem 0 1.2rem;
        color: #4ecdc4;
        font-weight: 600;
    }
    
    .video-showcase-premium p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.5;
        padding: 0 1.2rem;
        opacity: 0.85;
    }
    
    /* JAVASCRIPT-ASSISTED FIX - Override inline styles with CSS custom properties */
    .video-showcase-premium {
        --engagement-font-size: 0.75rem;
        --engagement-line-height: 1.2;
        --engagement-gap: 0.3rem;
    }
    
    /* Force override all engagement metric containers */
    .video-showcase-premium div[style*="padding: 1.5rem"] div[style*="display: flex"][style*="justify-content"] {
        align-items: center !important;
        line-height: var(--engagement-line-height) !important;
        font-size: var(--engagement-font-size) !important;
        height: 20px !important;
        min-height: 20px !important;
        max-height: 20px !important;
    }
    
    /* Force all child elements to same height and alignment */
    .video-showcase-premium div[style*="padding: 1.5rem"] div[style*="display: flex"] div,
    .video-showcase-premium div[style*="padding: 1.5rem"] div[style*="display: flex"] span {
        line-height: var(--engagement-line-height) !important;
        font-size: var(--engagement-font-size) !important;
        height: 20px !important;
        display: flex !important;
        align-items: center !important;
        vertical-align: baseline !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Special fix for gap in engagement metrics */
    .video-showcase-premium div[style*="gap: 0.5rem"] {
        gap: var(--engagement-gap) !important;
        align-items: center !important;
        height: 20px !important;
    }
    
    /* Make view counts same height as engagement metrics */
    .video-showcase-premium span[style*="opacity: 0.7"] {
        height: 20px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        line-height: var(--engagement-line-height) !important;
        font-size: var(--engagement-font-size) !important;
    }
    
    /* Fallback for general flex containers in video showcase */
    .video-showcase-premium div[style*="display: flex"]:not([style*="justify-content: space-between"]) {
        padding: 0 1.2rem !important;
        flex-wrap: wrap !important;
        gap: 0.3rem !important;
        font-size: 0.75rem !important;
        align-items: center !important;
        margin-bottom: 0.8rem !important;
    }
    
    /* Bottom CTA section in video showcase */
    .video-showcase-premium > div[style*="text-align: center"] {
        margin-top: 2rem;
        padding: 1.5rem;
        border-radius: 12px;
        background: rgba(220, 20, 60, 0.08);
        border: 1px solid rgba(220, 20, 60, 0.2);
    }
    
    .video-showcase-premium > div[style*="text-align: center"] h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
        color: #4ecdc4;
    }
    
    .video-showcase-premium > div[style*="text-align: center"] p:first-of-type {
        font-size: 1rem;
        margin-bottom: 1rem;
        line-height: 1.5;
    }
    
    .video-showcase-premium > div[style*="text-align: center"] p:last-of-type {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }
    
    .video-showcase-premium > div[style*="text-align: center"] button {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
        max-width: 300px;
        margin: 0 auto;
        display: block;
        line-height: 1.3;
    }
    
    /* SOLUTION SHOWCASE - IMPROVED SPACING */
    .solution {
        padding: 64px 0;
        margin-bottom: 0;
    }
    
    .solution .section-title {
        margin-bottom: 1.5rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .solution .section-subtitle {
        margin-bottom: 2.5rem;
        text-align: center;
        padding: 0 1rem;
        line-height: 1.5;
        opacity: 0.9;
    }
    
    .solution-showcase {
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
        margin-top: 1rem;
        margin-bottom: 0;
    }
    
    .showcase-content {
        order: 2;
        padding: 0 1rem;
    }
    
    .showcase-content h3 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
        color: #4ecdc4;
        text-align: center;
        font-weight: 700;
    }
    
    .ai-demo {
        order: 1;
        margin-bottom: 0;
        padding: 0 1rem;
    }
    
    .showcase-visual .pipeline-image {
        width: 100%;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.1);
        max-width: 380px;
        margin: 0 auto;
        display: block;
    }
    
    .benefit-list {
        list-style: none;
        padding: 0;
        margin: 1.5rem 0 2rem 0;
        background: rgba(255, 255, 255, 0.02);
        border-radius: 12px;
        padding: 1.5rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .benefit-list li {
        font-size: 0.95rem;
        padding: 0.8rem 0;
        line-height: 1.5;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        opacity: 0.9;
        position: relative;
        padding-left: 0.5rem;
    }
    
    .benefit-list li:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    /* OBJECTION CRUSHER SECTION - FIX OVERLAP */
    section[style*="background: rgba(78, 205, 196, 0.05)"] {
        padding: 64px 0 !important;
        margin-top: 0 !important;
        clear: both !important;
    }
    
    /* Ensure proper spacing after solution section */
    .solution + section {
        margin-top: 0 !important;
        clear: both !important;
    }
    
    /* TESTIMONIALS - IMPROVED SPACING */
    .social-proof {
        padding: 64px 0;
    }
    
    .social-proof .section-title {
        margin-bottom: 1.5rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .social-proof .section-subtitle {
        margin-bottom: 2.5rem;
        text-align: center;
        padding: 0 1rem;
        line-height: 1.5;
        opacity: 0.9;
    }
    
    .testimonial-image,
    .facebook-comment-image {
        width: 100%;
        height: auto;
        min-height: 320px;
        object-fit: contain;
        background: #ffffff;
        border-radius: 12px;
        display: block;
    }
    
    /* Facebook Comments Section */
    .facebook-comments {
        padding: 64px 0;
    }
    
    .facebook-comments .section-title {
        margin-bottom: 1.5rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .facebook-comments .section-subtitle {
        margin-bottom: 2.5rem;
        text-align: center;
        padding: 0 1rem;
        line-height: 1.5;
        opacity: 0.9;
    }
    
    /* FEATURES SECTION - IMPROVED SPACING */
    .features {
        padding: 64px 0;
    }
    
    .features .section-title {
        margin-bottom: 1.5rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .features .section-subtitle {
        margin-bottom: 2.5rem;
        text-align: center;
        padding: 0 1rem;
        line-height: 1.5;
        opacity: 0.9;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
        background: rgba(255, 255, 255, 0.02);
        text-align: center;
        min-height: 280px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
    
    .feature-icon {
        font-size: 2.2rem;
        margin-bottom: 1.2rem;
        text-align: center;
        display: block;
        color: #4ecdc4;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        text-align: center;
        color: #4ecdc4;
        font-weight: 700;
        line-height: 1.3;
    }
    
    .feature-card p {
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
        line-height: 1.5;
        opacity: 0.9;
        text-align: center;
        flex-grow: 1;
    }
    
    .feature-list {
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: left;
    }
    
    .feature-list li {
        font-size: 0.9rem;
        padding: 0.5rem 0;
        line-height: 1.5;
        opacity: 0.85;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        position: relative;
        padding-left: 0.8rem;
    }
    
    .feature-list li:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    /* MODULES SECTION */
    .module-card {
        padding: 1.5rem;
        background: rgba(255, 255, 255, 0.02);
    }
    
    .module-header {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .module-number {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        background: #dc143c;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.9rem;
        font-weight: 700;
        flex-shrink: 0;
    }
    
    .module-header h3 {
        font-size: 1.2rem;
        margin: 0;
        color: #4ecdc4;
        font-weight: 700;
    }
    
    .module-card p {
        margin-bottom: 1rem;
        font-size: 0.95rem;
        line-height: 1.5;
        opacity: 0.9;
    }
    
    .module-lessons {
        font-size: 0.85rem;
        opacity: 0.7;
        margin: 0;
    }
    
    /* BONUSES SECTION */
    .bonus-card {
        padding: 1.5rem;
        background: rgba(255, 255, 255, 0.02);
        position: relative;
    }
    
    .bonus-badge {
        position: absolute;
        top: -8px;
        left: 1rem;
        padding: 0.3rem 0.7rem;
        font-size: 0.75rem;
        border-radius: 4px;
        background: #dc143c;
        color: white;
        font-weight: 700;
    }
    
    .bonus-card h3 {
        font-size: 1.2rem;
        margin: 0.5rem 0 0.5rem 0;
        color: #4ecdc4;
        font-weight: 700;
    }
    
    .bonus-value {
        font-size: 1rem;
        color: #dc143c;
        font-weight: 600;
        margin-bottom: 1rem;
        display: block;
    }
    
    .bonus-card p {
        margin: 0;
        font-size: 0.95rem;
        line-height: 1.5;
        opacity: 0.9;
    }
    
    /* PRICING SECTION */
    .pricing-card {
        padding: 1.8rem 1.5rem;
        background: rgba(255, 255, 255, 0.02);
        text-align: center;
        position: relative;
    }
    
    .pricing-card.featured {
        background: rgba(78, 205, 196, 0.05);
        border: 2px solid rgba(78, 205, 196, 0.3);
        transform: none;
        margin: 0 auto 2rem auto;
    }
    
    .pricing-badge {
        position: absolute;
        top: -12px;
        left: 50%;
        transform: translateX(-50%);
        padding: 0.5rem 1rem;
        background: #dc143c;
        color: white;
        border-radius: 6px;
        font-size: 0.8rem;
        font-weight: 700;
    }
    
    .pricing-header h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        color: #4ecdc4;
    }
    
    .price {
        margin-bottom: 1rem;
        display: flex;
        align-items: baseline;
        justify-content: center;
        gap: 0.2rem;
    }
    
    .price-currency {
        font-size: 1.5rem;
        font-weight: 700;
    }
    
    .price-amount {
        font-size: 2.5rem;
        font-weight: 800;
        line-height: 1;
    }
    
    .price-period {
        font-size: 1rem;
        opacity: 0.7;
    }
    
    .price-original {
        font-size: 0.9rem;
        opacity: 0.6;
        text-decoration: line-through;
        margin-bottom: 1.5rem;
    }
    
    .pricing-features {
        list-style: none;
        padding: 0;
        margin: 1.5rem 0;
        text-align: left;
    }
    
    .pricing-features li {
        padding: 0.5rem 0;
        font-size: 0.9rem;
        line-height: 1.4;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        opacity: 0.9;
    }
    
    .pricing-features li:last-child {
        border-bottom: none;
    }
    
    .social-proof-mini {
        margin-top: 1rem;
        font-size: 0.85rem;
        opacity: 0.8;
    }
    
    /* VALUE STACK */
    .value-stack {
        margin-top: 2rem;
        padding: 1.5rem;
        background: rgba(255, 255, 255, 0.02);
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .value-stack h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        text-align: center;
        color: #4ecdc4;
    }
    
    .value-items {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .value-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 0.9rem;
    }
    
    .value-item:last-child {
        border-bottom: none;
    }
    
    .value-total,
    .value-today {
        font-weight: 700;
        font-size: 1rem;
    }
    
    .value-today .value-price {
        color: #dc143c;
        font-size: 1.2rem;
    }
    
    /* FAQ SECTION */
    .faq-item {
        padding: 1.5rem;
        background: rgba(255, 255, 255, 0.02);
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
        color: #4ecdc4;
        font-weight: 600;
    }
    
    .faq-item p {
        margin: 0;
        font-size: 0.95rem;
        line-height: 1.5;
        opacity: 0.9;
    }
    
    /* URGENCY SECTION */
    .urgency .container {
        text-align: center;
    }
    
    .urgency-content h2 {
        font-size: 1.9rem;
        margin-bottom: 1.5rem;
        color: #dc143c;
    }
    
    .countdown {
        display: flex;
        gap: 0.8rem;
        margin: 2rem 0;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .countdown-item {
        padding: 0.8rem 0.6rem;
        min-width: 70px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
        text-align: center;
    }
    
    .countdown-number {
        font-size: 1.6rem;
        font-weight: 700;
        color: #4ecdc4;
        display: block;
        line-height: 1.2;
    }
    
    .countdown-label {
        font-size: 0.7rem;
        opacity: 0.8;
        margin-top: 0.2rem;
    }
    
    .urgency-content p {
        font-size: 1rem;
        opacity: 0.9;
        margin-bottom: 1.5rem;
    }
    
    /* FINAL CTA SECTION */
    .final-cta .container {
        text-align: center;
    }
    
    .final-cta h2 {
        font-size: 1.9rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .final-cta > p {
        font-size: 1.05rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
        opacity: 0.9;
    }
    
    .cta-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .final-guarantee {
        margin: 1.5rem 0;
    }
    
    .final-urgency {
        margin-top: 2rem;
        text-align: center;
    }
    
    .final-urgency p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1rem;
        opacity: 0.9;
    }
    
    .final-urgency p:last-child {
        margin-bottom: 0;
        font-size: 0.95rem;
    }
    
    /* FOOTER */
    .footer {
        padding: 48px 0 24px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .footer-links a {
        font-size: 0.9rem;
        opacity: 0.8;
    }
    
    .footer-bottom {
        text-align: center;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 1.5rem;
    }
    
    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.5;
        opacity: 0.6;
        margin-top: 0.5rem;
    }
    
    /* INLINE STYLED SECTIONS OVERRIDE - COMPREHENSIVE FIX */
    section[style*="padding"] {
        padding: 64px 0 !important;
    }
    
    section[style*="padding"] .container {
        padding: 0 24px !important;
        margin: 0 auto !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Fix specific inline-styled sections */
    section[style*="background"] {
        padding: 64px 0 !important;
    }
    
    section[style*="background"] .container {
        padding: 0 24px !important;
        margin: 0 auto !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    section[style*="background"] h2 {
        font-size: 1.95rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1.5rem !important;
        text-align: center !important;
        padding: 0 1rem !important;
    }
    
    section[style*="background"] p {
        font-size: 1.05rem !important;
        line-height: 1.5 !important;
        margin-bottom: 1.5rem !important;
        text-align: center !important;
        padding: 0 1rem !important;
        opacity: 0.9 !important;
    }
    
    section[style*="background"] div[style*="grid"] {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
        margin: 0 auto !important;
        padding: 0 1rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    section[style*="background"] div[style*="grid"] > div {
        margin: 0 auto !important;
        max-width: 380px !important;
        width: 100% !important;
        padding: 1.5rem !important;
        border-radius: 12px !important;
        background: rgba(255, 255, 255, 0.02) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        box-sizing: border-box !important;
    }
    
    /* Fix objection crusher sections */
    section[style*="background"] div[style*="grid"] h3 {
        font-size: 1.2rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.3 !important;
        text-align: center !important;
        color: #dc143c !important;
        font-weight: 700 !important;
    }
    
    section[style*="background"] div[style*="grid"] p {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        margin: 0 !important;
        text-align: center !important;
        opacity: 0.9 !important;
        padding: 0 !important;
    }
    
    /* GRID CONTAINER FIXES */
    div[style*="grid"],
    div[style*="display: grid"] {
        width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
    }
    
    /* COMPARISON SECTIONS */
    .risk-comparison {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
        margin-top: 2rem !important;
    }
    
    .comparison-side {
        padding: 1.5rem !important;
        border-radius: 12px !important;
        margin: 0 !important;
    }
    
    .comparison-side:first-child {
        border: 2px solid rgba(220, 20, 60, 0.4) !important;
        background: rgba(220, 20, 60, 0.05) !important;
    }
    
    .comparison-side:last-child {
        border: 2px solid rgba(78, 205, 196, 0.4) !important;
        background: rgba(78, 205, 196, 0.05) !important;
    }
    
    .comparison-side h3 {
        font-size: 1.1rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.3 !important;
        text-align: center !important;
    }
    
    .comparison-side ul {
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
    }
    
    .comparison-side li {
        padding: 0.8rem 0 !important;
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        text-align: center !important;
    }
    
    .comparison-side li:last-child {
        border-bottom: none !important;
    }
}

/* EXTRA SMALL DEVICES - Consistent scaling */
@media screen and (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    section {
        padding: 56px 0;
    }
    
    .hero-container {
        padding: 0 20px;
        gap: 1.2rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .section-title {
        font-size: 1.7rem;
        margin-bottom: 1.2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        gap: 1.2rem;
        flex-direction: column;
        align-items: center;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .cta-primary,
    .pricing-cta,
    button[class*="cta"] {
        padding: 0.8rem 1.3rem;
        font-size: 0.9rem;
        max-width: 280px;
    }
    
    .cta-primary.large {
        font-size: 0.95rem;
        padding: 0.9rem 1.3rem;
        max-width: 290px;
    }
    
    .cta-subtitle {
        font-size: 0.85rem;
        margin-top: 0.6rem;
        margin-bottom: 0.4rem;
    }
    
    .problem-card,
    .feature-card,
    .module-card,
    .bonus-card,
    .faq-item,
    .testimonial-card,
    .facebook-comment-card {
        max-width: 340px;
    }
    
    /* EXTRA SMALL PROBLEM CARDS - FORCE EVEN SPACING */
    .problem .container {
        padding: 0 20px !important;
        margin: 0 auto !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .problem .section-title {
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: center !important;
    }
    
    .problem-grid {
        padding: 0 !important;
        gap: 1.5rem !important;
        margin: 0 !important;
        width: 100% !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .problem-card,
    .problem-card:first-child,
    .problem-card:nth-child(2),
    .problem-card:nth-child(3),
    .problem-card:nth-child(4) {
        max-width: 340px !important;
        min-height: 280px !important;
        width: 100% !important;
        margin: 0 auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        position: relative !important;
    }
    
    .card-header-image {
        height: 160px !important;
        width: 100% !important;
        object-fit: cover !important;
        object-position: center center !important;
        margin: 0 !important;
        padding: 0 !important;
        background: transparent !important;
    }
    
    .problem-card h3,
    .problem-card:first-child h3,
    .problem-card:nth-child(2) h3,
    .problem-card:nth-child(3) h3 {
        font-size: 1.2rem !important;
        padding: 1.2rem 1.2rem 0.6rem 1.2rem !important;
        margin: 0 !important;
        text-align: center !important;
        background: transparent !important;
        border: none !important;
        transform: none !important;
    }
    
    .problem-card p,
    .problem-card:first-child p,
    .problem-card:nth-child(2) p,
    .problem-card:nth-child(3) p {
        font-size: 0.9rem !important;
        padding: 0 1.2rem 1.2rem 1.2rem !important;
        margin: 0 !important;
        text-align: center !important;
        background: transparent !important;
        border: none !important;
        transform: none !important;
    }
    
    .problem-callout {
        max-width: 340px !important;
        margin: 1.5rem auto !important;
        width: 100% !important;
        padding: 0 !important;
        text-align: center !important;
    }
    
    .testimonial-image,
    .facebook-comment-image {
        min-height: 280px;
    }
    
    .hero-video-mobile video,
    .hero-video-mobile .video-thumbnail {
        min-height: 180px;
    }
    
    .countdown {
        gap: 0.6rem;
    }
    
    .countdown-item {
        padding: 0.6rem 0.4rem;
        min-width: 60px;
    }
    
    .countdown-number {
        font-size: 1.4rem;
    }
    
    .final-cta h2 {
        font-size: 1.6rem;
    }
    
    .urgency-content h2 {
        font-size: 1.7rem;
    }
    
    .mobile-guarantee {
        padding: 0.8rem;
        max-width: 280px;
    }
    
    .mobile-guarantee .guarantee-item {
        font-size: 0.8rem;
        margin: 0.3rem 0;
    }
    
    /* Extra small section overrides */
    section[style*="padding"] .container,
    section[style*="background"] .container {
        padding: 0 20px !important;
    }
    
    section[style*="background"] h2 {
        font-size: 1.7rem !important;
        padding: 0 0.5rem !important;
    }
    
    section[style*="background"] p {
        font-size: 1rem !important;
        padding: 0 0.5rem !important;
    }
    
    section[style*="background"] div[style*="grid"] {
        padding: 0 0.5rem !important;
        gap: 1.5rem !important;
    }
    
    section[style*="background"] div[style*="grid"] > div {
        max-width: 340px !important;
        padding: 1.2rem !important;
    }
    
    section[style*="background"] div[style*="grid"] h3 {
        font-size: 1.1rem !important;
    }
    
    section[style*="background"] div[style*="grid"] p {
        font-size: 0.9rem !important;
    }
    
    .comparison-side {
        padding: 1.2rem !important;
    }
    
    .comparison-side h3 {
        font-size: 1rem !important;
    }
    
    .comparison-side li {
        font-size: 0.85rem !important;
        padding: 0.7rem 0 !important;
    }
    
    .pricing-features li {
        font-size: 0.85rem !important;
        padding: 0.5rem 0 !important;
    }
    
    .feature-card,
    .module-card,
    .bonus-card,
    .faq-item {
        padding: 1.5rem 1.2rem;
        max-width: 340px;
    }
    
    .video-showcase-premium {
        margin: 2.5rem 0 !important;
    }
    
    .video-showcase-premium h3 {
        font-size: 1.6rem !important;
        padding: 0 0.5rem !important;
    }
    
    .video-showcase-premium > p {
        font-size: 0.95rem !important;
        padding: 0 0.5rem !important;
        margin-bottom: 2rem !important;
    }
    
    .video-showcase-premium > div[style*="grid"] {
        gap: 1.5rem !important;
        margin-bottom: 2rem !important;
        padding: 0 0.5rem !important;
    }
    
    .video-showcase-premium > div[style*="grid"] > div {
        max-width: 340px !important;
    }
    
    .video-showcase-premium video {
        height: 170px !important;
    }
    
    .video-showcase-premium h4 {
        font-size: 1rem !important;
        padding: 1rem 1rem 0 1rem !important;
    }
    
    .video-showcase-premium p {
        font-size: 0.85rem !important;
        padding: 0 1rem !important;
    }
    
    /* Fix engagement metrics alignment on extra small devices - PRECISE */
    .video-showcase-premium div[style*="display: flex"][style*="justify-content: space-between"] {
        padding: 0 1rem 1rem 1rem !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        font-size: 0.75rem !important;
        flex-wrap: nowrap !important;
        margin: 0 !important;
        min-height: 18px !important;
        line-height: 1.2 !important;
    }
    
    .video-showcase-premium div[style*="display: flex"][style*="justify-content: space-between"] > div {
        display: flex !important;
        align-items: center !important;
        gap: 0.3rem !important;
        flex-shrink: 0 !important;
        line-height: 1.2 !important;
    }
    
    .video-showcase-premium div[style*="display: flex"][style*="justify-content: space-between"] > div > span {
        font-size: 0.75rem !important;
        line-height: 1.2 !important;
        vertical-align: baseline !important;
    }
    
    .video-showcase-premium div[style*="display: flex"][style*="justify-content: space-between"] > span {
        flex-shrink: 0 !important;
        font-size: 0.75rem !important;
        opacity: 0.7 !important;
        text-align: right !important;
        white-space: nowrap !important;
        line-height: 1.2 !important;
        margin-left: auto !important;
        vertical-align: baseline !important;
    }
    
    .video-showcase-premium div[style*="display: flex"]:not([style*="justify-content: space-between"]) {
        padding: 0 1rem !important;
        flex-wrap: wrap !important;
        gap: 0.3rem !important;
        font-size: 0.7rem !important;
        align-items: center !important;
        margin-bottom: 0.8rem !important;
    }
} 

/* ===============================================
   SIMPLE SECURITY INFO - LIKE REAL CHECKOUT PAGES
   =============================================== */

.security-info {
    text-align: center !important;
    margin-bottom: 1.5rem !important;
}

.security-text {
    color: #a0a0a0 !important;
    font-size: 0.8rem !important;
    margin-bottom: 0.8rem !important;
    font-weight: 400 !important;
    opacity: 0.8 !important;
}

.trust-badges {
    display: flex !important;
    justify-content: center !important;
    gap: 0.6rem !important;
    flex-wrap: wrap !important;
}

.trust-badge {
    background: rgba(76, 205, 196, 0.1) !important;
    color: #4ecdc4 !important;
    padding: 0.3rem 0.6rem !important;
    border-radius: 6px !important;
    font-size: 0.7rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.3px !important;
    border: 1px solid rgba(76, 205, 196, 0.3) !important;
    transition: all 0.2s ease !important;
}

.trust-badge:hover {
    background: rgba(76, 205, 196, 0.15) !important;
    border-color: rgba(76, 205, 196, 0.4) !important;
}

/* ===============================================
   CHECKOUT PAGE MOBILE STYLES - CRITICAL FIX
   =============================================== */

@media (max-width: 768px) {
    
    /* Force entire page to use mobile layout */
    .order-page {
        background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%) !important;
        min-height: 100vh !important;
        padding: 0 !important;
    }
    
    .order-page .container {
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    /* Force mobile layout */
    .order-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
        max-width: 100% !important;
        padding: 20px !important;
        margin: 0 auto !important;
        grid-template-columns: none !important;
    }

    /* Order Summary Mobile Styles */
    .order-summary {
        order: 1 !important;
        width: 100% !important;
        max-width: none !important;
        background: rgba(28, 28, 47, 0.95) !important;
        backdrop-filter: blur(20px) !important;
        border-radius: 16px !important;
        padding: 20px !important;
        border: 1px solid rgba(220, 20, 60, 0.3) !important;
        margin-bottom: 1.5rem !important;
        position: static !important;
        height: auto !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
    }

    .order-summary h2 {
        color: #4ecdc4 !important;
        font-size: 1.5rem !important;
        margin-bottom: 1.5rem !important;
        text-align: center !important;
        font-weight: 700 !important;
    }

    /* Product Details Mobile */
    .product-details {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        margin-bottom: 2rem !important;
        text-align: center !important;
    }

    .product-image {
        margin: 0 auto 1rem auto !important;
    }

    .product-icon {
        width: 60px !important;
        height: 60px !important;
        border-radius: 12px !important;
        background: linear-gradient(135deg, #dc143c, #6366f1) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 2rem !important;
    }

    .product-info h3 {
        color: white !important;
        font-size: 1.3rem !important;
        margin-bottom: 0.5rem !important;
        text-align: center !important;
        font-weight: 600 !important;
    }

    .product-info p {
        color: #a0a0a0 !important;
        font-size: 1rem !important;
        text-align: center !important;
        line-height: 1.5 !important;
    }

    /* Product Features List Mobile */
    .product-features {
        list-style: none !important;
        padding: 0 !important;
        margin: 1.5rem 0 !important;
        text-align: left !important;
    }

    .product-features li {
        color: #4ecdc4 !important;
        font-size: 0.95rem !important;
        margin-bottom: 0.75rem !important;
        line-height: 1.4 !important;
    }

    /* Price Breakdown Mobile */
    .price-breakdown {
        background: rgba(220, 20, 60, 0.1) !important;
        border-radius: 12px !important;
        padding: 1.5rem !important;
        margin: 1.5rem 0 !important;
        border: 1px solid rgba(220, 20, 60, 0.3) !important;
    }

    .price-item {
        display: flex !important;
        justify-content: space-between !important;
        margin-bottom: 0.75rem !important;
        padding: 0.5rem 0 !important;
        font-size: 1rem !important;
    }

    .price-item.total {
        border-top: 1px solid rgba(76, 205, 196, 0.3) !important;
        border-bottom: 1px solid rgba(76, 205, 196, 0.3) !important;
        margin-top: 1rem !important;
        padding-top: 1rem !important;
        font-weight: 700 !important;
        font-size: 1.2rem !important;
    }

    .final-price {
        color: #4ecdc4 !important;
        font-size: 1.8rem !important;
        font-weight: 800 !important;
    }

    /* Guarantee Badge Mobile */
    .guarantee-badge {
        background: rgba(76, 205, 196, 0.1) !important;
        border-radius: 12px !important;
        padding: 1.5rem !important;
        border: 1px solid rgba(76, 205, 196, 0.3) !important;
        margin-top: 1.5rem !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 1rem !important;
        min-height: auto !important;
        height: auto !important;
        overflow: visible !important;
    }

    .guarantee-icon {
        font-size: 2rem !important;
        margin-bottom: 0.5rem !important;
    }

    .guarantee-text {
        width: 100% !important;
        text-align: center !important;
    }

    .guarantee-text strong {
        color: #4ecdc4 !important;
        font-size: 1.1rem !important;
        margin-bottom: 0.75rem !important;
        font-weight: 600 !important;
        display: block !important;
        line-height: 1.3 !important;
    }

    .guarantee-text p {
        color: #a0a0a0 !important;
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        margin: 0 !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    /* Timer Mobile */
    .urgency-timer {
        background: rgba(220, 20, 60, 0.1) !important;
        border-radius: 12px !important;
        padding: 1.5rem !important;
        margin: 1.5rem 0 !important;
        border: 1px solid rgba(220, 20, 60, 0.3) !important;
        text-align: center !important;
    }

    .urgency-timer h4 {
        color: #dc143c !important;
        font-size: 1.1rem !important;
        margin-bottom: 1rem !important;
        font-weight: 600 !important;
    }

    .mini-countdown {
        color: #4ecdc4 !important;
        font-size: 1.5rem !important;
        font-weight: 700 !important;
        font-family: 'Courier New', monospace !important;
        margin-bottom: 0.5rem !important;
    }

    /* Payment Form Mobile */
    .payment-form {
        order: 2 !important;
        width: 100% !important;
        max-width: none !important;
        background: rgba(28, 28, 47, 0.95) !important;
        backdrop-filter: blur(20px) !important;
        border-radius: 16px !important;
        padding: 20px !important;
        border: 1px solid rgba(220, 20, 60, 0.3) !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
    }

    .payment-form h2 {
        color: #4ecdc4 !important;
        font-size: 1.3rem !important;
        margin-bottom: 0.5rem !important;
        text-align: center !important;
        font-weight: 600 !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
    }

    .payment-form .security-notice {
        color: #4ecdc4 !important;
        font-size: 0.8rem !important;
        text-align: center !important;
        margin-bottom: 1.8rem !important;
        opacity: 0.8 !important;
        font-weight: 500 !important;
        padding-bottom: 1rem !important;
        border-bottom: 1px solid rgba(75, 85, 99, 0.2) !important;
    }

    /* Form Sections Mobile */
    .form-section {
        margin-bottom: 1.8rem !important;
        padding-bottom: 1.5rem !important;
        border-bottom: 1px solid rgba(75, 85, 99, 0.2) !important;
    }

    .form-section:last-child {
        border-bottom: none !important;
        margin-bottom: 0 !important;
    }

    .form-section h3 {
        color: #4ecdc4 !important;
        font-size: 1.1rem !important;
        margin-bottom: 1.2rem !important;
        font-weight: 600 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
    }

    .checkout-form {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 1.3rem !important;
    }

    .form-group {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.4rem !important;
        width: 100% !important;
    }

    .form-row {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        width: 100% !important;
    }

    .checkout-form label {
        color: #4ecdc4 !important;
        font-size: 0.85rem !important;
        font-weight: 600 !important;
        margin-bottom: 0.4rem !important;
        text-transform: uppercase !important;
        letter-spacing: 0.3px !important;
    }

    .checkout-form input,
    .checkout-form select {
        width: 100% !important;
        padding: 14px 16px !important;
        background: rgba(15, 15, 35, 0.9) !important;
        border: 1px solid rgba(75, 85, 99, 0.6) !important;
        border-radius: 8px !important;
        color: white !important;
        font-size: 0.95rem !important;
        transition: all 0.2s ease !important;
        box-sizing: border-box !important;
        box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2) !important;
    }

    .checkout-form input:focus,
    .checkout-form select:focus {
        outline: none !important;
        border-color: #dc143c !important;
        box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.15), inset 0 1px 3px rgba(0, 0, 0, 0.2) !important;
        background: rgba(15, 15, 35, 0.95) !important;
        transform: translateY(-1px) !important;
    }

    .checkout-form input::placeholder {
        color: #888 !important;
        font-size: 0.9rem !important;
        opacity: 0.7 !important;
    }

    .checkout-form small {
        color: #a0a0a0 !important;
        font-size: 0.75rem !important;
        margin-top: 0.3rem !important;
        font-style: italic !important;
    }

    /* Payment Methods */
    .payment-methods {
        margin-bottom: 1.2rem !important;
        padding: 1rem !important;
        background: rgba(15, 15, 35, 0.5) !important;
        border-radius: 8px !important;
        border: 1px solid rgba(75, 85, 99, 0.3) !important;
    }

    .payment-icons {
        display: flex !important;
        align-items: center !important;
        gap: 0.6rem !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }

    .card-icon {
        font-size: 1.4rem !important;
        filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3)) !important;
    }

    .card-type {
        background: rgba(76, 205, 196, 0.15) !important;
        padding: 0.3rem 0.6rem !important;
        border-radius: 6px !important;
        font-size: 0.7rem !important;
        color: #4ecdc4 !important;
        font-weight: 600 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.3px !important;
        border: 1px solid rgba(76, 205, 196, 0.3) !important;
    }

    /* Order Button Mobile - SLEEK & MODERN */
    .order-button {
        width: 100% !important;
        padding: 16px 24px !important;
        background: linear-gradient(135deg, #dc143c 0%, #b01030 100%) !important;
        border: none !important;
        border-radius: 10px !important;
        color: white !important;
        font-size: 1rem !important;
        font-weight: 600 !important;
        cursor: pointer !important;
        transition: all 0.2s ease !important;
        margin: 1.8rem 0 0 0 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.3rem !important;
        box-shadow: 0 6px 16px rgba(220, 20, 60, 0.25) !important;
        position: relative !important;
        overflow: hidden !important;
        border: 1px solid rgba(220, 20, 60, 0.4) !important;
    }

    .order-button::before {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: -100% !important;
        width: 100% !important;
        height: 100% !important;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent) !important;
        transition: left 0.5s ease !important;
    }

    .order-button:hover::before {
        left: 100% !important;
    }

    .order-button:hover {
        transform: translateY(-1px) !important;
        box-shadow: 0 6px 20px rgba(220, 20, 60, 0.35) !important;
        background: linear-gradient(135deg, #b01030 0%, #dc143c 100%) !important;
    }

    .order-button:active {
        transform: translateY(0) !important;
        box-shadow: 0 2px 8px rgba(220, 20, 60, 0.3) !important;
    }

    .button-text {
        font-size: 1rem !important;
        font-weight: 600 !important;
        margin: 0 !important;
    }

    .button-subtext {
        font-size: 0.75rem !important;
        opacity: 0.9 !important;
        font-weight: 400 !important;
        text-transform: none !important;
        letter-spacing: 0.3px !important;
        margin: 0 !important;
    }

    /* Order Footer */
    .order-footer {
        text-align: center !important;
        margin-top: 1.5rem !important;
        padding-top: 1.5rem !important;
        border-top: 1px solid rgba(75, 85, 99, 0.3) !important;
    }

    /* Mobile-specific trust seal adjustments */
    .security-info {
        margin-bottom: 1.2rem !important;
        padding: 0 5px !important;
    }
    
    .security-text {
        font-size: 0.75rem !important;
        margin-bottom: 0.6rem !important;
    }
    
    .trust-badges {
        gap: 0.4rem !important;
    }
    
    .trust-badge {
        font-size: 0.65rem !important;
        padding: 0.25rem 0.5rem !important;
    }

    .terms-text {
        color: #a0a0a0 !important;
        font-size: 0.75rem !important;
        line-height: 1.5 !important;
        margin-top: 0.8rem !important;
        padding: 0 1rem !important;
    }

    .terms-text a {
        color: #4ecdc4 !important;
        text-decoration: none !important;
        font-weight: 500 !important;
    }

    .terms-text a:hover {
        text-decoration: underline !important;
    }

    /* Trust Signals Mobile */
    .trust-signals {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        margin-top: 2rem !important;
    }

    .trust-item {
        display: flex !important;
        align-items: center !important;
        gap: 1rem !important;
        background: rgba(28, 28, 47, 0.8) !important;
        padding: 1rem !important;
        border-radius: 12px !important;
        border: 1px solid rgba(75, 85, 99, 0.3) !important;
    }

    .trust-icon {
        font-size: 1.5rem !important;
        flex-shrink: 0 !important;
    }

    .trust-text strong {
        color: #4ecdc4 !important;
        font-size: 0.9rem !important;
        display: block !important;
        margin-bottom: 0.25rem !important;
    }

    .trust-text p {
        color: #a0a0a0 !important;
        font-size: 0.8rem !important;
        margin: 0 !important;
        line-height: 1.3 !important;
    }
}

/* Extra Small Devices - Checkout Optimizations */
@media (max-width: 400px) {
    .order-container {
        padding: 12px !important;
        gap: 1.2rem !important;
    }
    
    .order-summary,
    .payment-form {
        padding: 16px !important;
        border-radius: 12px !important;
    }
    
    .product-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.5rem !important;
    }
    
    .order-summary h2,
    .payment-form h2 {
        font-size: 1.2rem !important;
    }
    
    .final-price {
        font-size: 1.5rem !important;
    }
    
    .checkout-form input,
    .checkout-form select {
        padding: 12px 14px !important;
        font-size: 0.9rem !important;
    }
    
    .order-button {
        padding: 14px 20px !important;
        font-size: 0.9rem !important;
        margin: 1.5rem 0 0 0 !important;
    }
    
    .button-text {
        font-size: 0.9rem !important;
    }
    
    .button-subtext {
        font-size: 0.65rem !important;
    }
    
    .product-features li {
        font-size: 0.85rem !important;
    }
    
    /* Security info for small screens */
    .security-info {
        margin-bottom: 1rem !important;
        padding: 0 !important;
    }
    
    .security-text {
        font-size: 0.7rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .trust-badges {
        gap: 0.3rem !important;
    }
    
    .trust-badge {
        font-size: 0.6rem !important;
        padding: 0.2rem 0.4rem !important;
    }
    
    .guarantee-text p {
        font-size: 0.8rem !important;
    }
    
    .form-section {
        margin-bottom: 1.5rem !important;
        padding-bottom: 1.2rem !important;
    }
    
    .payment-methods {
        padding: 0.8rem !important;
        margin-bottom: 1rem !important;
    }
    
    .terms-text {
        font-size: 0.7rem !important;
        padding: 0 0.5rem !important;
    }
} 