        .how-it-works {
            padding: 80px 0;
            background: white;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 60px;
        }

        .step-card {
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #B8D4FF 0%, #6B7FE8 100%);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 700;
            margin: 0 auto 20px;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
        }

        .step-icon {
            font-size: 64px;
            margin-bottom: 20px;
        }

        .step-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .step-description {
            color: #8E8E93;
            font-size: 16px;
            line-height: 1.6;
        }

        .step-arrow {
            position: absolute;
            top: 30px;
            right: -40px;
            width: 80px;
            height: 2px;
            background: linear-gradient(135deg, #B8D4FF 0%, #6B7FE8 100%);
        }

        .step-arrow::after {
            content: '';
            position: absolute;
            right: 0;
            top: -6px;
            width: 0;
            height: 0;
            border-left: 14px solid #764ba2;
            border-top: 7px solid transparent;
            border-bottom: 7px solid transparent;
        }

        .step-card:last-child .step-arrow {
            display: none;
        }

        /* Use Cases */
        .use-cases {
            padding: 80px 0;
            background: #F2F2F7;
        }

        .use-cases-carousel {
            display: flex;
            gap: 30px;
            overflow-x: auto;
            padding: 20px 0;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
        }

        .use-cases-carousel::-webkit-scrollbar {
            display: none;
        }
        
        /* Hide scrollbar for IE, Edge and Firefox */
        .use-cases-carousel {
            -ms-overflow-style: none;  /* IE and Edge */
            scrollbar-width: none;  /* Firefox */
        }

        .use-case-card {
            min-width: 280px;
            max-width: 350px;
            background: white;
            padding: 30px;
            border-radius: 20px;
            scroll-snap-align: start;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .use-case-card:hover {
            transform: scale(1.05);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .use-case-emoji {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .use-case-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .use-case-example {
            color: #8E8E93;
            font-style: italic;
        }

        /* Demo Videos Section */
        .demo-videos {
            padding: 80px 0;
            background: #F2F2F7;
        }

        /* Scrollbar hide utility */
        .scrollbar-hide {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }
        .scrollbar-hide::-webkit-scrollbar {
            display: none;
        }

        /* Tailwind-style utility classes */
        .py-8 { padding-top: 2rem; padding-bottom: 2rem; }
        .px-4 {
            padding-left: 1rem;
            padding-right: 1rem;
            box-sizing: border-box;
        }
        .mb-4 { margin-bottom: 1rem; }
        .mt-3 { margin-top: 0.75rem; }
        .gap-4 { gap: 1rem; }
        .pb-4 { padding-bottom: 1rem; }
        .flex {
            display: flex;
            max-width: 100%;
        }
        .text-center { text-align: center; }
        .text-2xl { font-size: 1.5rem; line-height: 2rem; }
        .text-xs { font-size: 0.75rem; line-height: 1rem; }
        .font-extrabold { font-weight: 800; }
        .overflow-x-auto {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            max-width: 100%;
            width: 100%;
        }
        .snap-x { scroll-snap-type: x mandatory; }
        .snap-mandatory { scroll-snap-type: x mandatory; }
        .snap-center { scroll-snap-align: center; }
        .min-w-\[85vw\] { min-width: calc(100vw - 3rem); max-width: calc(100vw - 3rem); }
        .bg-slate-900 { background-color: rgb(15 23 42); }
        .bg-white { background-color: #ffffff; }
        .bg-black { background-color: #000000; }
        .bg-opacity-30 { background-color: rgba(0, 0, 0, 0.3); }
        .bg-opacity-40 { background-color: rgba(0, 0, 0, 0.4); }
        .bg-red-600 { background-color: rgb(220 38 38); }
        .rounded-2xl { border-radius: 1rem; }
        .rounded-full { border-radius: 9999px; }
        .shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
        .shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
        .overflow-hidden { overflow: hidden; }
        .relative { position: relative; }
        .absolute { position: absolute; }
        .inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
        .w-full { width: 100%; }
        .h-full { height: 100%; }
        .w-20 { width: 5rem; }
        .h-20 { height: 5rem; }
        .w-10 { width: 2.5rem; }
        .h-10 { height: 2.5rem; }
        .items-center { align-items: center; }
        .justify-center { justify-content: center; }
        .object-cover { object-fit: cover; }
        .cursor-pointer { cursor: pointer; }
        .text-white { color: #ffffff; }
        .text-slate-500 { color: rgb(100 116 139); }
        .transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
        .transform { transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }
        .ml-1 { margin-left: 0.25rem; }
        .mx-auto { margin-left: auto; margin-right: auto; }
        .max-w-screen-xl { max-width: 1280px; width: 100%; box-sizing: border-box; }

        .hover\:bg-opacity-40:hover { background-color: rgba(0, 0, 0, 0.4); }
        .hover\:bg-red-700:hover { background-color: rgb(185 28 28); }
        .hover\:scale-110:hover { --tw-scale-x: 1.1; --tw-scale-y: 1.1; transform: scale(1.1); }

        .md\:hidden { display: block; }
        .hidden { display: none; }

        @media (max-width: 767px) {
            * {
                max-width: 100vw;
            }
            .px-4 {
                padding-left: 0.75rem;
                padding-right: 0.75rem;
            }
            .gap-4 {
                gap: 0.75rem;
            }
            .min-w-\[85vw\] {
                min-width: calc(100vw - 2rem);
                max-width: calc(100vw - 2rem);
            }
        }

        @media (min-width: 768px) {
            .md\:hidden { display: none !important; }
            .md\:grid { display: grid !important; }
            .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
            .md\:gap-6 { gap: 1.5rem !important; }
            .md\:max-w-6xl { max-width: 72rem !important; }
            .md\:mx-auto { margin-left: auto !important; margin-right: auto !important; }
            .md\:py-12 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
            .md\:mb-6 { margin-bottom: 1.5rem !important; }
            .md\:text-3xl { font-size: 1.875rem !important; line-height: 2.25rem !important; }
        }


        /* Features Grid */
        .features {
            padding: 80px 0;
            background: white;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 60px;
        }

        .feature-card {
            text-align: center;
            padding: 30px;
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            background: #F2F2F7;
            transform: translateY(-5px);
        }

        .feature-icon {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .feature-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .feature-description {
            color: #8E8E93;
            font-size: 14px;
        }

        /* Pricing Section */
        .pricing {
            padding: 80px 0;
            background: linear-gradient(135deg, #B8D4FF 0%, #6B7FE8 100%);
            color: white;
        }

        .pricing .section-header h2 {
            color: white;
            -webkit-text-fill-color: white;
        }

        .pricing-toggle {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
        }

        .toggle-container {
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            padding: 5px;
            display: flex;
        }

        .toggle-option {
            padding: 12px 30px;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
        }

        .toggle-option.active {
            background: white;
            color: #6B7FE8;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }

        .pricing-card {
            background: white;
            color: #000000;
            padding: 40px;
            border-radius: 20px;
            text-align: center;
            position: relative;
            transition: all 0.3s ease;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
        }

        .pricing-card.popular {
            transform: scale(1.05);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .popular-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: #FFD60A;
            color: #000000;
            padding: 5px 20px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
        }

        .pricing-name {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .pricing-price {
            font-size: 48px;
            font-weight: 800;
            color: #6B7FE8;
            margin-bottom: 20px;
        }

        .pricing-duration {
            color: #8E8E93;
            margin-bottom: 30px;
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 30px;
        }

        .pricing-features li {
            padding: 10px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .pricing-features li::before {
            content: "✓";
            color: #34C759;
            font-weight: 700;
        }

        .pricing-cta {
            background: #6B7FE8;
            color: white;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            display: inline-block;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .pricing-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 122, 255, 0.3);
        }

        .pricing-comparison {
            text-align: center;
            color: white;
            font-size: 18px;
            font-style: italic;
            margin-top: 40px;
        }

        /* Testimonials */
        .testimonials {
            padding: 80px 0;
            background: white;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 60px;
        }

        .testimonial-card {
            background: #F2F2F7;
            padding: 30px;
            border-radius: 20px;
        }

        .testimonial-quote {
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 20px;
            font-style: italic;
        }

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

        .author-avatar {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #B8D4FF 0%, #6B7FE8 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 20px;
        }

        .author-info {
            flex: 1;
        }

        .author-name {
            font-weight: 700;
            margin-bottom: 5px;
        }

        .author-location {
            color: #8E8E93;
            font-size: 14px;
        }

        .testimonial-rating {
            color: #FFD60A;
            font-size: 20px;
            text-align: right;
            margin-bottom: 15px;
        }

        /* FAQ Section */
        .faq {
            padding: 80px 0;
            background: #F2F2F7;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            margin-bottom: 20px;
            border-radius: 15px;
            overflow: hidden;
        }

        .faq-question {
            padding: 25px 30px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: #F2F2F7;
        }

        .faq-icon {
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 200px;
            padding: 0 30px 25px;
        }

        /* Final CTA */
        .final-cta {
            padding: 100px 0;
            background: linear-gradient(135deg, #B8D4FF 0%, #6B7FE8 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .final-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: float 20s linear infinite reverse;
        }

        .final-cta-content {
            position: relative;
            z-index: 1;
        }

        .final-cta h2 {
            font-size: 48px;
            color: white;
            margin-bottom: 20px;
            font-weight: 800;
        }

        .final-cta p {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 40px;
        }

        .app-store-button {
            display: inline-block;
            background: white;
            padding: 15px 40px;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .app-store-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        .app-store-button img {
            height: 40px;
        }

        .credits-note {
            margin-top: 30px;
            color: rgba(255, 255, 255, 0.9);
            font-size: 18px;
            font-weight: 500;
        }
        .free-trial-badge {
            background: linear-gradient(135deg, #FFD700, #FFA500);
            color: #000;
            padding: 10px 22px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 15px;
            margin: 20px 0 16px;
            display: inline-block;
            box-shadow: 0 4px 12px rgba(255, 215, 0, 0.25);
        }
        .free-credits-highlight {
            color: #000;
            font-size: 20px;
            font-weight: 600;
            margin-top: 10px;
            background: linear-gradient(135deg, #FFD700, #FFA500);
            padding: 12px 24px;
            border-radius: 20px;
            display: inline-block;
            margin-bottom: 20px;
            box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
        }
        .app-store-button-styled {
            display: inline-block;
            background: #000;
            color: white;
            padding: 12px 28px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }
        .app-store-button-styled:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
            background: #1a1a1a;
        }

        /* Footer */
        footer {
            background: #1C1C1E;
            color: white;
            padding: 40px 0;
            text-align: center;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 20px;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            transition: opacity 0.3s ease;
        }

        .footer-links a:hover {
            opacity: 0.7;
        }

        /* Responsive - Mobile Optimization */
        @media (max-width: 768px) {
            /* Navigation Mobile */
            nav {
                padding: 12px 0;
            }

            .logo {
                font-size: 18px;
                gap: 8px;
            }

            .logo-icon {
                width: 32px;
                height: 32px;
            }

            .nav-download-btn {
                padding: 8px 16px;
                font-size: 14px;
            }

            /* Hero Mobile */
            .hero {
                padding: 80px 0 40px;
            }

            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 0;
            }

            .hero-text h1 {
                font-size: 44px;
                margin-bottom: 12px;
                line-height: 1.1;
                font-weight: 900;
                color: white;
                text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            }

            .hero-text .tagline {
                font-size: 22px;
                margin-bottom: 16px;
                font-weight: 600;
                color: rgba(255, 255, 255, 0.95);
                letter-spacing: 0.5px;
            }

            .hero-text .subtitle {
                font-size: 14px;
                margin-bottom: 24px;
                padding: 0 20px;
                line-height: 1.4;
            }

            .hero-phone {
                display: block;
                margin: 30px auto 20px;
                max-width: 200px;
            }
            
            .hero-phone .phone-mockup {
                width: 180px;
                height: 368px;
                padding: 5px;
                animation: none;
                background: #000;
                border-radius: 30px;
            }
            
            .hero-phone .phone-screen {
                border-radius: 26px;
                overflow: hidden;
            }
            
            .hero-phone .app-screenshot-img {
                border-radius: 26px;
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 12px;
                padding: 0 20px;
                align-items: center;
            }

            .btn-primary, .btn-secondary {
                padding: 14px 24px;
                font-size: 16px;
                width: 100%;
                max-width: 280px;
                text-align: center;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 8px;
            }

            /* Container Mobile */
            .container {
                padding: 0 16px;
            }

            /* Section Headers Mobile */
            .section-header {
                margin-bottom: 30px;
            }

            .section-header h2 {
                font-size: 24px;
                margin-bottom: 8px;
            }

            /* Problem Section Mobile */
            .problem-section {
                padding: 40px 0;
            }

            .comparison-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .comparison-card {
                padding: 16px;
                margin-bottom: 0;
                border: 2px solid transparent;
                border-radius: 16px;
            }
            
            /* Card headers more compact and centered */
            .comparison-card .card-header {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 12px;
                margin-bottom: 16px;
                padding-bottom: 12px;
                border-bottom: 1px solid rgba(0,0,0,0.1);
            }
            
            /* Force all prices to stay on one line */
            .comparison-card .comparison-price {
                white-space: nowrap !important;
                min-width: fit-content;
                flex-shrink: 0;
            }
            
            /* Safari-specific fix for text wrapping */
            @supports (-webkit-appearance: none) {
                .comparison-card .card-header {
                    -webkit-box-orient: horizontal;
                    -webkit-box-direction: normal;
                    flex-wrap: nowrap;
                }
                
                .comparison-card .comparison-price {
                    -webkit-flex-shrink: 0;
                    display: inline-block;
                }
            }
            
            .free-trial-banner {
                background: linear-gradient(135deg, #FFD700, #FFA500);
                color: #000;
                padding: 8px;
                text-align: center;
                font-weight: 700;
                font-size: 14px;
                letter-spacing: 0.5px;
                border-radius: 16px 16px 0 0;
                margin: -20px -20px 20px -20px;
            }
            
            /* Visual differentiation for cards */
            .comparison-card:first-child {
                background: #FFF8F8;
                border-color: #FFE5E5;
            }
            
            .comparison-card:nth-child(2) {
                background: #F8F8F8;
                border-color: #E0E0E0;
            }
            
            .comparison-card:nth-child(2) .comparison-list li {
                color: #333;
            }
            
            .comparison-card.featured {
                background: linear-gradient(135deg, #E8F2FF 0%, #F0F7FF 100%);
                border: 2px solid #6B7FE8;
                position: relative;
            }
            
            .comparison-card.featured .comparison-title,
            .comparison-card.featured .comparison-price {
                color: #333 !important;
            }
            
            .comparison-card.featured .comparison-list li {
                color: #444 !important;
            }
            
            .comparison-card.featured::before {
                content: "⭐ BEST CHOICE";
                position: absolute;
                top: -10px;
                left: 50%;
                transform: translateX(-50%);
                background: #6B7FE8;
                color: white;
                padding: 3px 10px;
                border-radius: 10px;
                font-size: 9px;
                font-weight: 700;
            }

            .comparison-icon {
                font-size: 24px;
                flex-shrink: 0;
            }
            
            .comparison-info {
                flex: 1;
                min-width: 0;
            }

            .comparison-title {
                font-size: 16px;
                font-weight: 700;
                margin-bottom: 2px;
            }

            .comparison-price {
                font-size: 20px;
                font-weight: 600;
                color: #6B7FE8;
            }
            
            .comparison-card:first-child .comparison-price {
                color: #E74C3C;
            }
            
            .comparison-card:nth-child(2) .comparison-price {
                color: #333;
            }

            .comparison-list {
                margin-top: 0;
            }

            .comparison-list li {
                padding: 8px 0;
                font-size: 13px;
                position: relative;
                padding-left: 24px;
                line-height: 1.4;
            }
            
            .comparison-list li::before {
                position: absolute;
                left: 0;
                top: 8px;
                font-size: 14px;
            }
            
            /* Traditional Tours - mostly negative */
            .comparison-card:first-child .comparison-list li::before {
                content: "❌";
            }
            
            .comparison-card:first-child .comparison-list li[data-positive="true"]::before {
                content: "✅";
            }
            
            /* Audio Guides - mixed */
            .comparison-card:nth-child(2) .comparison-list li::before {
                content: "❌";
            }
            
            .comparison-card:nth-child(2) .comparison-list li[data-positive="true"]::before {
                content: "✅";
            }
            
            /* AI-Tourguide - all positive */
            .comparison-card.featured .comparison-list li::before {
                content: "✅";
            }

            .criteria-label {
                display: none;
            }

            /* How It Works Mobile */
            .how-it-works {
                padding: 40px 0;
            }

            .steps-grid {
                grid-template-columns: 1fr;
                gap: 24px;
                margin-top: 30px;
            }

            .step-number {
                width: 48px;
                height: 48px;
                font-size: 20px;
                margin-bottom: 16px;
            }

            .step-icon {
                font-size: 40px;
                margin-bottom: 12px;
            }

            .step-title {
                font-size: 18px;
                margin-bottom: 8px;
            }

            .step-description {
                font-size: 14px;
                padding: 0 20px;
            }

            .step-arrow {
                display: none;
            }

            /* Demo Videos Mobile */
            .demo-videos {
                padding: 40px 0;
            }

            .demo-carousel-container {
                padding: 0; /* Full width on mobile */
            }

            .video-wrapper.video-shorts {
                padding-bottom: 125%; /* Better aspect ratio for mobile Shorts */
                max-width: 100%;
            }

            .video-caption h3 {
                font-size: 18px;
            }

            .video-caption p {
                font-size: 14px;
            }

            .demo-indicators {
                margin-top: 20px;
            }

            .indicator {
                width: 10px;
                height: 10px;
            }

            .indicator.active {
                width: 24px;
            }

            /* Use Cases Mobile - Horizontal Scroll */
            .use-cases {
                padding: 40px 0;
            }

            .use-cases-carousel {
                gap: 12px;
                padding: 12px 16px;
            }

            .use-case-card {
                min-width: 70vw;
                max-width: 85vw;
                padding: 20px;
            }

            .use-case-emoji {
                font-size: 32px;
                margin-bottom: 12px;
            }

            .use-case-title {
                font-size: 16px;
                margin-bottom: 6px;
            }

            .use-case-example {
                font-size: 13px;
            }

            /* Features Mobile */
            .features {
                padding: 40px 0;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                margin-top: 30px;
            }

            .feature-card {
                padding: 20px;
            }

            .feature-icon {
                font-size: 32px;
                margin-bottom: 12px;
            }

            .feature-title {
                font-size: 16px;
                margin-bottom: 6px;
            }

            .feature-description {
                font-size: 13px;
            }

            /* Pricing Mobile */
            .pricing {
                padding: 40px 0;
            }

            .pricing-toggle {
                margin-bottom: 24px;
            }

            .toggle-option {
                padding: 10px 20px;
                font-size: 14px;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
                gap: 16px;
                margin-bottom: 24px;
            }

            .pricing-card {
                padding: 24px;
            }

            .pricing-card.popular {
                transform: scale(1);
            }

            .pricing-name {
                font-size: 18px;
                margin-bottom: 8px;
            }

            .pricing-price {
                font-size: 32px;
                margin-bottom: 12px;
            }

            .pricing-duration {
                font-size: 14px;
                margin-bottom: 20px;
            }

            .pricing-features {
                margin-bottom: 20px;
                font-size: 14px;
            }

            .pricing-features li {
                padding: 6px 0;
            }

            .pricing-cta {
                padding: 12px 24px;
                font-size: 14px;
            }

            .pricing-comparison {
                font-size: 14px;
                margin-top: 24px;
                padding: 0 20px;
            }

            /* Testimonials Mobile */
            .testimonials {
                padding: 40px 0;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 16px;
                margin-top: 30px;
            }

            .testimonial-card {
                padding: 20px;
            }

            .testimonial-quote {
                font-size: 14px;
                margin-bottom: 16px;
                line-height: 1.5;
            }

            .author-avatar {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            .author-name {
                font-size: 14px;
            }

            .author-location {
                font-size: 12px;
            }

            .testimonial-rating {
                font-size: 16px;
                margin-bottom: 10px;
            }

            /* FAQ Mobile */
            .faq {
                padding: 40px 0;
            }

            .faq-item {
                margin-bottom: 12px;
            }

            .faq-question {
                padding: 16px 20px;
                font-size: 14px;
            }

            .faq-item.active .faq-answer {
                max-height: 300px;
                padding: 0 20px 16px;
                font-size: 13px;
            }

            /* Final CTA Mobile */
            .final-cta {
                padding: 60px 0;
            }

            .final-cta h2 {
                font-size: 28px;
                margin-bottom: 12px;
            }

            .final-cta p {
                font-size: 16px;
                margin-bottom: 24px;
                padding: 0 20px;
            }

            .credits-note {
                font-size: 14px;
                margin-top: 20px;
            }

            /* Footer Mobile */
            footer {
                padding: 24px 0;
            }

            .footer-links {
                flex-direction: column;
                gap: 12px;
                margin-bottom: 16px;
                font-size: 14px;
            }

            /* Hide animations on mobile for performance */
            * {
                animation-duration: 0s !important;
                animation-delay: 0s !important;
            }

            /* Keep only essential animations */
            .phone-mockup {
                animation: float-phone 6s ease-in-out infinite !important;
            }
        }
    </style>
