/* ==========================================================================
           Modern Dark Theme - Cursor/Lovable Inspired
           ========================================================================== */
           :root {
            /* Monochrome-first palette */
            --primary: #FFFFFF;
            --primary-light: #F4F4F5;
            --primary-dark: #E4E4E7;
            --accent: #5046E5;
            --accent-light: #6366F1;

            /* True black backgrounds */
            --bg-primary: #000000;
            --bg-secondary: #0A0A0A;
            --bg-card: rgba(255, 255, 255, 0.03);
            --bg-card-hover: rgba(255, 255, 255, 0.05);

            /* High contrast text */
            --text-primary: #FFFFFF;
            --text-secondary: #A1A1AA;
            --text-muted: #52525B;

            /* Minimal borders */
            --border: rgba(255, 255, 255, 0.08);
            --border-light: rgba(255, 255, 255, 0.05);
            --border-glow: rgba(255, 255, 255, 0.15);

            /* No gradients */
            --gradient-primary: #5046E5;
            --gradient-secondary: #4338CA;

            /* Legacy */
            --glass-bg: rgba(0, 0, 0, 0.8);
            --glass-border: rgba(255, 255, 255, 0.1);
            --border-color: rgba(255, 255, 255, 0.08);
        }
        
        /* ==========================================================================
           Reset & Base
           ========================================================================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Inter', 'SF Pro Display', 'Segoe UI', sans-serif;
            line-height: 1.6;
            color: var(--text-primary);
            background: var(--bg-primary);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            position: relative;
            min-height: 100vh;
        }

        /* Hero Background Image */
        .hero-bg {
            position: fixed;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 150%;
            max-width: 2000px;
            height: auto;
            pointer-events: none;
            z-index: 0;
            opacity: 0.85;
        }

        /* Mobile hero background */
        @media (max-width: 768px) {
            .hero-bg {
                width: 140%;
                max-width: none;
                bottom: 15%;
            }
        }

        /* ==========================================================================
           Utility Classes
           ========================================================================== */
        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        .gradient-bg {
            background: var(--gradient-primary);
        }

        .gradient-text {
            color: var(--primary);
        }
        
        /* Clean Cards */
        .glass-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            position: relative;
            overflow: hidden;
            transition: border-color 0.2s ease;
        }

        .glass-card:hover {
            border-color: var(--border-glow);
        }
        
        /* ==========================================================================
           Header & Navigation
           ========================================================================== */
        header {
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        
        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-primary);
            text-decoration: none;
            letter-spacing: -0.02em;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }
        
        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            z-index: 1001;
        }
        
        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--text-primary);
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 3px;
        }
        
        .hamburger.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }
        
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        
        .hamburger.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }
        
        /* Mobile Menu Overlay */
        .mobile-menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(0, 0, 0, 0.6);
            z-index: 998;
            opacity: 0;
            transition: opacity 0.2s ease;
        }

        .mobile-menu-overlay.active {
            opacity: 1;
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 320px;
            height: 100vh;
            background: var(--bg-primary);
            border-left: 1px solid var(--border);
            transition: right 0.2s ease;
            z-index: 999;
            padding: 5rem 1.5rem 2rem;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu a {
            display: block;
            padding: 0.875rem 0;
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 1rem;
            transition: color 0.15s ease;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .mobile-menu a:hover {
            color: #fff;
        }

        /* Special styling for mobile CTA button */
        .mobile-menu .mobile-cta {
            margin-top: 1.5rem;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            text-align: center;
            background: rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
        }

        .mobile-menu .mobile-cta:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.3);
        }
        
        .nav-links a {
            text-decoration: none;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 500;
            font-size: 0.9rem;
            transition: color 0.15s ease;
        }

        .nav-links a:hover {
            color: #fff;
        }

        .primary-button {
            background: transparent;
            color: rgba(255, 255, 255, 0.7);
            padding: 0.5rem 0.75rem;
            text-decoration: none;
            border-radius: 6px;
            font-weight: 500;
            font-size: 0.875rem;
            transition: color 0.15s ease;
            border: none;
            cursor: pointer;
            display: inline-block;
            text-align: center;
        }

        .primary-button:hover {
            color: var(--text-primary);
        }
        
        .cta-content h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            letter-spacing: -0.03em;
            color: var(--text-primary);
        }

        .cta-content p {
            font-size: 1.125rem;
            margin-bottom: 2rem;
            color: var(--text-secondary);
            font-weight: 400;
        }
        
        .cta-booking-button {
            background: var(--primary);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 10px;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            display: inline-block;
            transition: opacity 0.15s ease;
        }

        .cta-booking-button:hover {
            opacity: 0.9;
        }

        /* Social Proof Section - Hidden */
        .social-proof {
            display: none;
        }

        .proof-stats,
        .proof-stat,
        .proof-number,
        .proof-label,
        .trust-badges,
        .trust-badges .badge {
            display: none;
        }

        /* ChatGenius Announcement Section - Hidden */
        .chatgenius-announcement {
            display: none;
        }

        .chatgenius-card,
        .chatgenius-badge,
        .chatgenius-title,
        .chatgenius-subtitle,
        .chatgenius-features,
        .chatgenius-feature,
        .chatgenius-cta,
        .chatgenius-notice {
            display: none;
        }
        
        /* ==========================================================================
           Footer - Minimal Grid
           ========================================================================== */
        footer {
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            color: var(--text-primary);
            padding: 4rem 0 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            z-index: 10;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .footer-brand {
            max-width: 240px;
        }

        .footer-logo {
            font-size: 0.875rem;
            margin-bottom: 0.75rem;
            font-weight: 500;
            color: var(--text-primary);
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            font-size: 0.8125rem;
        }

        .footer-section {
            display: flex;
            flex-direction: column;
        }

        .footer-section h3 {
            font-size: 0.8125rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 1rem;
            text-transform: none;
            letter-spacing: 0;
        }

        .footer-section a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: color 0.15s ease;
            font-weight: 400;
            font-size: 0.8125rem;
            margin-bottom: 0.5rem;
        }

        .footer-section a:hover {
            color: var(--text-primary);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.5rem;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.75rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-bottom p {
            margin: 0;
        }

        .footer-bottom a {
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            transition: color 0.15s ease;
        }

        .footer-bottom a:hover {
            color: rgba(255, 255, 255, 0.8);
        }

        .footer-social {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .footer-social a {
            color: rgba(255, 255, 255, 0.5);
            transition: color 0.2s ease;
            display: flex;
            align-items: center;
        }

        .footer-social a:hover {
            color: #fff;
        }

        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }

            .footer-brand {
                grid-column: span 2;
                max-width: 100%;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }

            .footer-social {
                justify-content: center;
            }
        }

        
        /* ==========================================================================
           Minimal Animations
           ========================================================================== */
        
        /* ==========================================================================
           Responsive Design
           ========================================================================== */
        @media (max-width: 768px) {
            .nav-links, .desktop-only {
                display: none !important;
            }

            .hamburger {
                display: flex;
            }

            .mobile-menu {
                display: block;
            }


            .hero h1 {
                font-size: 2.5rem !important;
                padding: 0 1rem !important;
            }

            .hero .subtitle {
                font-size: 1.1rem !important;
                padding: 0 1rem !important;
            }
            
            /* Ensure desktop-only items are hidden */
            .desktop-only {
                display: none !important;
            }
            
            .hero-stats {
                flex-direction: column;
                gap: 2rem;
            }
            
            .nav-links {
                display: none;
            }
            
            .nav-desktop {
                display: none;
            }
            
            .hero-cta {
                flex-direction: column;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .services {
                padding: 10px 0;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .flip-card {
                height: 420px;
            }
            
            .flip-card-front, .flip-card-back {
                padding: 2rem 1.5rem;
            }
            
            .flip-card-back p {
                font-size: 0.9rem;
            }
            
            .solutions-grid {
                grid-template-columns: 1fr;
            }
            
            .cta-section h2 {
                font-size: 2.5rem;
            }
        }
        
        /* ==========================================================================
           Complete Mobile Optimization
           ========================================================================== */
        @media (max-width: 768px) {
            /* Prevent horizontal overflow while allowing vertical scrolling */
            html, body {
                overflow-x: hidden !important;
                overflow-y: auto !important;
                max-width: 100vw !important;
                -webkit-overflow-scrolling: touch;
                position: relative !important;
            }
            
            /* Container adjustments */
            .container {
                max-width: 100%;
            }
            
            /* Specific width constraints for media elements only */
            img, video, iframe, svg {
                max-width: 100% !important;
            }

            /* Touch action for interactive elements */
            .flip-card, .bento-card, .trust-item, .timeline-item {
                touch-action: pan-y pinch-zoom;
            }

            .container {
                padding: 0 16px !important;
                max-width: 100% !important;
            }
            
            /* Hide particles on mobile */
            .particle {
                display: none !important;
            }
            
            /* Hero section mobile */
            .hero {
                padding: 100px 0 60px !important;
                min-height: auto !important;
            }


            .hero h1 {
                font-size: 2.5rem !important;
                padding: 0 1rem !important;
            }

            .hero .subtitle {
                font-size: 1.1rem !important;
                padding: 0 1rem !important;
            }
            
            .hero-cta {
                flex-direction: column !important;
                padding: 0 1rem !important;
                gap: 0.8rem !important;
            }
            
            .button {
                width: 100% !important;
                max-width: 280px !important;
                padding: 14px 24px !important;
                font-size: 14px !important;
            }
            
            .hero-stats {
                flex-direction: column !important;
                padding: 0 1rem !important;
                gap: 1.5rem !important;
            }
            
            .stat-number {
                font-size: 2rem !important;
            }
            
            /* Services mobile */
            .services {
                padding: 60px 0 !important;
            }
            
            .section-title {
                font-size: 2rem !important;
                padding: 0 1rem !important;
            }
            
            .section-subtitle {
                font-size: 1rem !important;
                padding: 0 1rem !important;
            }
            
            .services-grid {
                grid-template-columns: 1fr !important;
                padding: 0 1rem !important;
                gap: 1.5rem !important;
            }
            
            .flip-card {
                height: 360px !important;
            }
            
            .flip-card-front,
            .flip-card-back {
                padding: 1.5rem !important;
            }
            
            .flip-card-front .service-icon {
                width: 60px !important;
                height: 60px !important;
                font-size: 1.8rem !important;
            }
            
            .flip-card .title,
        .flip-card h2.title {
                font-size: 1.2rem !important;
            }
            
            .flip-card-front p,
            .flip-card-back p {
                font-size: 0.9rem !important;
            }
            
            /* Solutions mobile */
            .solutions {
                padding: 60px 0 !important;
            }
            
            
            .solutions-grid {
                grid-template-columns: 1fr !important;
                padding: 0 1rem !important;
                gap: 1.2rem !important;
            }
            
            .solution-item {
                min-height: 200px !important;
                padding: 1.5rem !important;
            }
            
            .solution-number {
                width: 40px !important;
                height: 40px !important;
                font-size: 1rem !important;
                margin-bottom: 1rem !important;
            }
            
            .solution-item h3 {
                font-size: 1.1rem !important;
                margin-bottom: 0.8rem !important;
            }
            
            .solution-item p {
                font-size: 0.85rem !important;
            }
            
            /* CTA mobile */
            .cta-section {
                padding: 60px 0 !important;
            }
            
            .cta-content {
                padding: 40px 20px !important;
                margin: 0 1rem !important;
                border-radius: 20px !important;
            }
            
            .cta-content h2 {
                font-size: 2rem !important;
                padding: 0 0.5rem !important;
            }

            /* ChatGenius mobile */
            .chatgenius-announcement {
                padding: 60px 0 !important;
            }

            .chatgenius-card {
                padding: 40px 25px !important;
                margin: 0 1rem !important;
                border-radius: 20px !important;
            }

            .chatgenius-title {
                font-size: 2.2rem !important;
            }

            .chatgenius-subtitle {
                font-size: 1.1rem !important;
            }

            .chatgenius-features {
                grid-template-columns: 1fr 1fr !important;
                gap: 1rem !important;
            }

            .chatgenius-feature {
                padding: 1rem !important;
            }

            .chatgenius-feature .feature-icon {
                font-size: 1.5rem !important;
            }

            .chatgenius-feature span:last-child {
                font-size: 0.85rem !important;
            }

            .chatgenius-cta {
                flex-direction: column !important;
                gap: 0.8rem !important;
            }

            .chatgenius-cta .button {
                width: 100% !important;
            }

            .chatgenius-notice {
                font-size: 0.85rem !important;
            }

            .cta-content p {
                font-size: 1rem !important;
                padding: 0 0.5rem !important;
            }
            
            .cta-booking-button {
                padding: 14px 28px !important;
                font-size: 14px !important;
                max-width: 90% !important;
            }
            
        }

        /* ==========================================================================
           Hero Section - Linear Style
           ========================================================================== */

        .hero-new {
            min-height: 90vh;
            display: flex;
            align-items: center;
            position: relative;
            padding: 10rem 0 6rem;
        }

        /* Hide background orbs */
        .hero-background,
        .gradient-orb,
        .orb-1, .orb-2, .orb-3, .orb-4 {
            display: none;
        }

        .hero-content-new {
            position: relative;
            z-index: 1;
            max-width: 900px;
            text-align: left;
        }

        .hero-headline {
            font-family: 'Satoshi', sans-serif;
            font-size: clamp(2.5rem, 8vw, 5.5rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
            letter-spacing: -0.04em;
            line-height: 1.1;
            color: var(--text-primary);
        }

        .hero-headline .highlight {
            color: var(--text-secondary);
        }

        .hero-headline .highlight::after {
            display: none;
        }

        .hero-subtitle-new {
            font-size: 1.125rem;
            color: rgba(255, 255, 255, 0.75);
            margin-bottom: 2rem;
            line-height: 1.6;
            max-width: 520px;
        }

        .hero-cta-new {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .btn-primary-new {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.625rem 1rem;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--text-primary);
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 6px;
            cursor: pointer;
            text-decoration: none;
            transition: border-color 0.15s ease, background 0.15s ease;
        }

        .btn-primary-new:hover {
            border-color: rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.12);
        }

        /* Trial button - more prominent */
        .btn-trial {
            background: #fff;
            color: #000;
            border-color: #fff;
            padding: 0.75rem 1.5rem;
            font-size: 0.9375rem;
            font-weight: 600;
        }

        .btn-trial:hover {
            background: rgba(255, 255, 255, 0.9);
            border-color: rgba(255, 255, 255, 0.9);
        }

        /* Hero trust badge */
        .hero-trust {
            margin-top: 2rem;
        }

        .meta-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 10px 20px;
            background: rgba(10, 10, 10, 0.6);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
        }

        .meta-badge img {
            height: 28px;
            filter: brightness(0) invert(1);
        }

        /* Meta badge - certification style */
        .meta-badge-prominent {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 12px 20px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 12px;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.85);
            font-weight: 500;
            letter-spacing: -0.01em;
        }

        .meta-badge-prominent img {
            height: 32px;
            filter: brightness(0) invert(1);
            opacity: 0.9;
        }

        .meta-badge-prominent .badge-check {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 20px;
            height: 20px;
            background: #22c55e;
            border-radius: 50%;
            margin-left: 2px;
            flex-shrink: 0;
        }

        .meta-badge-prominent .badge-check svg {
            width: 12px;
            height: 12px;
            color: #fff;
        }

        /* Hero Layout with Phone */
        .hero-with-phone {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 4rem;
        }

        .hero-text-content {
            flex: 1;
            max-width: 560px;
        }

        /* iPhone 14 Pro Mockup - devices.css */
        .phone-mockup {
            flex-shrink: 0;
            width: 260px;
            height: 530px;
            position: relative;
            overflow: visible;
        }

        .phone-mockup .device-iphone-14-pro {
            transform: scale(0.61);
            transform-origin: top left;
            position: absolute;
            top: 0;
            left: 0;
        }

        .device-iphone-14-pro {
            height: 868px;
            width: 428px;
            position: relative;
        }

        .device-iphone-14-pro .device-frame {
            background: #010101;
            border: 1px solid #1b1721;
            border-radius: 68px;
            box-shadow: inset 0 0 4px 2px #c0b7cd, inset 0 0 0 6px #342c3f;
            height: 868px;
            padding: 19px;
            width: 428px;
        }

        .device-iphone-14-pro .device-screen {
            border-radius: 49px;
            height: 830px;
            width: 390px;
            overflow: hidden;
            background: #000;
        }

        .device-iphone-14-pro .device-stripe::after,
        .device-iphone-14-pro .device-stripe::before {
            border: solid rgba(1, 1, 1, .25);
            border-width: 0 7px;
            content: "";
            height: 7px;
            left: 0;
            position: absolute;
            width: 100%;
            z-index: 9;
        }

        .device-iphone-14-pro .device-stripe::after {
            top: 85px;
        }

        .device-iphone-14-pro .device-stripe::before {
            bottom: 85px;
        }

        .device-iphone-14-pro .device-header {
            background: #010101;
            border-radius: 20px;
            height: 35px;
            left: 50%;
            margin-left: -60px;
            position: absolute;
            top: 29px;
            width: 120px;
            z-index: 10;
        }

        .device-iphone-14-pro .device-sensors::after,
        .device-iphone-14-pro .device-sensors::before {
            content: "";
            position: absolute;
        }

        .device-iphone-14-pro .device-sensors::after {
            background: #010101;
            border-radius: 17px;
            height: 33px;
            left: 50%;
            margin-left: -60px;
            top: 30px;
            width: 74px;
        }

        .device-iphone-14-pro .device-sensors::before {
            background: radial-gradient(farthest-corner at 20% 20%, #6074bf 0, transparent 40%),
                        radial-gradient(farthest-corner at 80% 80%, #513785 0, #24555e 20%, transparent 50%);
            border-radius: 50%;
            box-shadow: 0 0 1px 1px rgba(255, 255, 255, .05);
            height: 9px;
            left: 50%;
            margin-left: 36px;
            top: 42px;
            width: 9px;
        }

        .device-iphone-14-pro .device-btns {
            background: #1b1721;
            border-radius: 2px;
            height: 32px;
            left: -2px;
            position: absolute;
            top: 115px;
            width: 3px;
        }

        .device-iphone-14-pro .device-btns::after,
        .device-iphone-14-pro .device-btns::before {
            background: #1b1721;
            border-radius: 2px;
            content: "";
            height: 62px;
            left: 0;
            position: absolute;
            width: 3px;
        }

        .device-iphone-14-pro .device-btns::after {
            top: 60px;
        }

        .device-iphone-14-pro .device-btns::before {
            top: 140px;
        }

        .device-iphone-14-pro .device-power {
            background: #1b1721;
            border-radius: 2px;
            height: 100px;
            position: absolute;
            right: -2px;
            top: 200px;
            width: 3px;
        }

        /* DM Conversation inside screen */
        .dm-header {
            background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
            padding: 50px 24px 20px;
            display: flex;
            align-items: center;
            gap: 14px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .dm-avatar {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: linear-gradient(135deg, #405DE6, #833AB4, #E1306C);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 600;
            color: #fff;
        }

        .dm-user-info {
            flex: 1;
        }

        .dm-username {
            font-size: 22px;
            font-weight: 600;
            color: #fff;
        }

        .dm-status {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.5);
        }

        .dm-messages {
            padding: 24px;
            display: flex;
            flex-direction: column;
            gap: 20px;
            height: 680px;
            overflow: hidden;
        }

        .dm-bubble {
            max-width: 85%;
            padding: 16px 20px;
            border-radius: 24px;
            font-size: 19px;
            line-height: 1.4;
            animation: messageSlide 0.5s ease-out forwards;
            opacity: 0;
        }

        .dm-bubble.incoming {
            background: #262626;
            color: #fff;
            align-self: flex-start;
            border-bottom-left-radius: 6px;
        }

        .dm-bubble.outgoing {
            background: linear-gradient(135deg, #405DE6 0%, #5851DB 100%);
            color: #fff;
            align-self: flex-end;
            border-bottom-right-radius: 6px;
        }

        .dm-bubble:nth-child(1) { animation-delay: 0.8s; }
        .dm-bubble:nth-child(2) { animation-delay: 2.2s; }
        .dm-bubble:nth-child(3) { animation-delay: 3.6s; }
        .dm-bubble:nth-child(4) { animation-delay: 5s; }

        @keyframes messageSlide {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @media (max-width: 768px) {
            .meta-badge, .meta-badge-prominent {
                padding: 8px 14px;
                gap: 8px;
            }
            .meta-badge img, .meta-badge-prominent img {
                height: 22px;
            }
            .meta-badge span, .meta-badge-prominent span {
                font-size: 0.8rem;
            }

            .hero-with-phone {
                flex-direction: column;
                gap: 3rem;
            }

            .hero-text-content {
                max-width: 100%;
                text-align: left;
            }

            .phone-mockup {
                display: none;
            }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            .phone-mockup {
                width: 180px;
                height: 370px;
            }
            .phone-mockup .device-iphone-14-pro {
                transform: scale(0.42);
            }
        }

        /* Product Showcase - Screenshot Section */
        .product-showcase {
            padding: 4rem 0 6rem;
            position: relative;
        }

        .product-showcase .container {
            max-width: 1000px;
        }

        .screenshot-wrapper {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border);
        }

        .dashboard-screenshot {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Why ChatGenius Section */
        .why-chatgenius {
            padding: 6rem 0;
            border-top: 1px solid var(--border);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .benefit-item {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }

        .benefit-icon {
            flex-shrink: 0;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.5);
        }

        .benefit-content h3 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0.25rem;
            color: var(--text-primary);
        }

        .benefit-content p {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.5);
            line-height: 1.5;
        }

        .pricing-note {
            margin-top: 3rem;
            display: flex;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .pricing-note .price-highlight {
            font-size: 1.1rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.9);
        }

        .pricing-note .price-highlight strong {
            font-size: 1.25rem;
            font-weight: 700;
            color: #fff;
        }

        .pricing-note .price-subtext {
            font-size: 0.875rem;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.5);
            padding: 4px 10px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 4px;
        }

        .learn-more-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            transition: color 0.15s ease;
        }

        .learn-more-link:hover {
            color: rgba(255, 255, 255, 0.8);
        }

        /* Trust Bar - Tech Stack Logos */
        .trust-bar {
            padding: 3rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            position: relative;
            z-index: 10;
            background: transparent;
        }

        .trust-bar-label {
            text-align: center;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: #fff !important;
            opacity: 1 !important;
            margin-bottom: 2rem;
        }

        .trust-bar-logos {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 3.5rem;
            flex-wrap: wrap;
        }

        .trust-bar-logos img {
            height: 36px;
            width: auto;
            opacity: 0.9;
            transition: all 0.2s ease;
        }

        .trust-bar-logos img:hover {
            opacity: 1;
            transform: scale(1.05);
        }

        .trust-bar-logos .logo-meta {
            height: 40px;
        }

        .trust-bar-logos .logo-openai {
            height: 32px;
            filter: brightness(0) invert(1);
        }

        .trust-bar-logos .logo-stripe {
            height: 40px;
        }

        .trust-bar-logos .logo-twilio {
            height: 38px;
        }

        .trust-bar-logos .logo-pusher {
            height: 36px;
            filter: brightness(0) invert(1);
        }

        .trust-bar-logos .logo-gcal {
            height: 38px;
        }

        @media (max-width: 768px) {
            .trust-bar {
                padding: 2.5rem 0;
                background: transparent;
                backdrop-filter: none;
                -webkit-backdrop-filter: none;
            }
            .trust-bar-logos {
                gap: 2rem;
            }
            .trust-bar-logos img {
                height: 28px;
            }
            .trust-bar-logos .logo-stripe {
                height: 32px;
            }
        }

        /* Also Available Section */
        .also-available {
            padding: 6rem 0;
            border-top: 1px solid var(--border);
        }

        .other-products {
            display: flex;
            flex-direction: column;
            gap: 0;
            margin-top: 2rem;
        }

        .other-product {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.25rem 0;
            border-bottom: 1px solid var(--border);
            text-decoration: none;
            transition: opacity 0.15s ease;
        }

        .other-product:first-child {
            border-top: 1px solid var(--border);
        }

        .other-product:hover {
            opacity: 0.7;
        }

        .product-icon {
            flex-shrink: 0;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.5);
        }

        .product-info {
            flex: 1;
        }

        .product-info h3 {
            font-size: 0.9375rem;
            font-weight: 500;
            color: var(--text-primary);
            margin-bottom: 0.125rem;
        }

        .product-info p {
            font-size: 0.8125rem;
            color: rgba(255, 255, 255, 0.5);
        }

        .product-price {
            font-size: 0.8125rem;
            color: rgba(255, 255, 255, 0.6);
            font-weight: 500;
        }

        .product-price.free-badge {
            color: rgba(255, 255, 255, 0.6);
        }

        /* Mobile adjustments for new sections */
        @media (max-width: 768px) {
            .product-showcase {
                padding: 2rem 0 4rem;
                overflow: hidden;
            }

            .screenshot-wrapper {
                margin: 0 -1rem;
                border-radius: 0;
                border-left: none;
                border-right: none;
            }

            .why-chatgenius,
            .also-available {
                padding: 4rem 0;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .pricing-note {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }

            .other-product {
                flex-wrap: wrap;
            }

            .product-price {
                width: 100%;
                margin-top: 0.5rem;
                padding-left: 56px;
            }
        }

        /* Hide stats section */
        .hero-stats {
            display: none;
        }

        .btn-primary-new:hover {
            opacity: 0.9;
        }

        .btn-large {
            padding: 0.625rem 1rem;
            font-size: 0.875rem;
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 4rem;
            margin-top: 4rem;
        }

        .stat {
            text-align: center;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            display: block;
            color: var(--text-primary);
        }

        .stat-label {
            color: var(--text-muted);
            font-size: 0.875rem;
            font-weight: 500;
            margin-top: 0.25rem;
        }

        /* Hide scroll indicator */
        .scroll-indicator {
            display: none;
        }

        /* Products Section */
        .products-bento {
            padding: 6rem 0;
            position: relative;
        }

        .section-heading {
            font-size: 0.8125rem;
            font-weight: 500;
            text-align: left;
            margin-bottom: 3rem;
            color: rgba(255, 255, 255, 0.7);
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .section-description {
            display: none;
        }

        .bento-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1px;
            background: var(--border);
            border: 1px solid var(--border);
            border-radius: 12px;
            overflow: hidden;
        }

        .bento-card {
            background: rgba(10, 10, 10, 0.95);
            border: none;
            border-radius: 0;
            padding: 2rem;
            transition: all 0.2s ease;
        }

        .bento-card:hover {
            background: rgba(20, 20, 20, 0.98);
            transform: translateY(-2px);
        }

        .card-large {
            grid-column: span 1;
        }

        .card-medium {
            grid-column: span 1;
        }

        @media (min-width: 1024px) {
            .bento-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .card-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 1rem;
        }

        .card-icon {
            color: var(--text-secondary);
        }

        .card-icon svg {
            width: 20px;
            height: 20px;
        }

        .card-icon.gradient-bg {
            width: 32px;
            height: 32px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--text-primary);
            background: var(--bg-card);
            border: 1px solid var(--border);
        }

        .card-icon-img {
            width: 32px;
            height: 32px;
            border-radius: 6px;
            object-fit: cover;
            opacity: 0.8;
        }

        .card-badge {
            padding: 0.25rem 0.5rem;
            background: transparent;
            border: none;
            font-size: 0.75rem;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.6);
        }

        .card-meta-badge {
            display: none;
        }

        .card-meta-logo {
            display: none;
        }

        .badge-free {
            color: rgba(52, 211, 153, 0.9);
        }

        .badge-coming {
            color: rgba(255, 255, 255, 0.5);
        }

        .card-title {
            font-size: 1rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
        }

        .card-description {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 1rem;
            line-height: 1.5;
        }

        .card-features {
            list-style: none;
            margin-bottom: 1.25rem;
        }

        .card-features li {
            padding: 0.25rem 0;
            padding-left: 1rem;
            color: rgba(255, 255, 255, 0.65);
            font-size: 0.8125rem;
            position: relative;
        }

        .card-features li::before {
            content: 'â—†';
            position: absolute;
            left: 0;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.5rem;
            top: 0.5rem;
        }

        .card-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.8125rem;
            font-weight: 500;
            color: #fff;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 6px;
            padding: 0.5rem 1rem;
            text-decoration: none;
            transition: all 0.15s ease;
        }

        .card-cta:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.25);
        }

        .card-cta svg {
            width: 14px;
            height: 14px;
        }

        /* How It Works Timeline - Hidden for cleaner look */
        .how-it-works-timeline {
            display: none;
        }

        .timeline,
        .timeline-item,
        .timeline-marker,
        .marker-dot,
        .marker-line,
        .timeline-content,
        .timeline-icon,
        .timeline-title,
        .timeline-description {
            display: none;
        }

        /* Why SumGenius Trust Section - Hidden */
        .why-sumgenius {
            display: none;
        }

        .trust-grid,
        .trust-item,
        .trust-icon,
        .trust-title,
        .trust-description {
            display: none;
        }

        /* Final CTA Section */
        .final-cta {
            padding: 6rem 0;
            position: relative;
            border-top: 1px solid var(--border);
        }

        .cta-background {
            display: none;
        }

        .cta-content-new {
            position: relative;
            z-index: 1;
            max-width: 480px;
            text-align: left;
            padding: 0;
            background: transparent;
            border: none;
            border-radius: 0;
        }

        .cta-content-new.visible {
            opacity: 1;
        }

        .cta-headline {
            font-size: 1.5rem;
            font-weight: 500;
            line-height: 1.3;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        .cta-headline span {
            display: inline;
            color: var(--text-secondary);
        }

        .cta-description {
            font-size: 0.9375rem;
            color: var(--text-secondary);
            margin-bottom: 3rem;
            line-height: 1.7;
        }

        .cta-stats {
            display: none;
        }

        .cta-stat,
        .cta-stat .stat-number,
        .cta-stat .stat-label {
            display: none;
        }

        .cta-button-group {
            margin-bottom: 0;
        }

        .cta-trust {
            display: none;
        }

        .cta-trust-simple {
            margin-top: 1.5rem;
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.5);
        }

        .cta-trust-simple a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: underline;
            text-underline-offset: 2px;
            transition: color 0.15s ease;
        }

        .cta-trust-simple a:hover {
            color: var(--text-primary);
        }

        /* Simplified Fade In - No Transform Animation */
        .fade-in-scroll {
            opacity: 1;
        }

        .fade-in-scroll.visible {
            opacity: 1;
        }

        /* Gradient Text Utility - Simplified */
        .gradient-text {
            color: var(--primary);
        }

        .gradient-animate {
            color: var(--primary);
        }

        /* Responsive Breakpoints */
        @media (max-width: 1024px) {
            .hero-headline {
                font-size: 3rem;
            }

            .section-heading {
                font-size: 2rem;
            }

            .cta-headline {
                font-size: 1.75rem;
            }
        }

        @media (max-width: 768px) {
            .hero-new {
                padding: 7rem 0 4rem;
                min-height: auto;
            }

            .hero-headline {
                font-size: 1.75rem;
            }

            .hero-subtitle-new {
                font-size: 1rem;
            }

            .hero-cta-new {
                flex-direction: column;
                align-items: flex-start;
            }

            .products-bento,
            .final-cta {
                padding: 4rem 0;
            }

            .bento-grid {
                grid-template-columns: 1fr;
            }

            .bento-card {
                padding: 1.5rem;
            }

            .card-title {
                font-size: 1.5rem;
            }

            .timeline-item {
                grid-template-columns: 60px 1fr;
                gap: 1.5rem;
                margin-bottom: 3rem;
            }

            .marker-dot {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }

            .timeline-title {
                font-size: 1.25rem;
            }

            .timeline-description {
                font-size: 1rem;
            }

            .trust-grid {
                grid-template-columns: 1fr;
            }

            .cta-content-new {
                padding: 2.5rem 1.5rem;
            }

            .cta-headline {
                font-size: 2rem;
            }

            .cta-description {
                font-size: 1rem;
            }

            .cta-stats {
                gap: 2rem;
            }

            .stat-number {
                font-size: 2rem;
            }

            .btn-large {
                padding: 1rem 2rem;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .hero-headline {
                font-size: 2rem;
                white-space: normal;
            }

            .hero-stats {
                gap: 1.5rem;
            }

            .stat-number {
                font-size: 2rem;
            }

            .stat-label {
                font-size: 0.8rem;
            }

            .orb-1, .orb-2, .orb-3, .orb-4 {
                width: 300px;
                height: 300px;
            }
        }
