        /* --- VARIABLES & RESET --- */
        :root {
            --primary: #22c55e;
            /* Tikko Blue */
            --primary-dark: #22c55ec4;
            --success: #22c55e;
            --text-main: #111827;
            --text-secondary: #6b7280;
            --bg-light: #ffffff;
            --bg-off: #f9fafb;
            --radius: 16px;
            --transition: cubic-bezier(0.16, 1, 0.3, 1);
            /* Apple-like easing */
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }

        html,
        body {
            overflow-x: hidden;
            width: 100%;
        }

        body {
            background-color: var(--bg-light);
            color: var(--text-main);
            line-height: 1.5;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        /* --- ANIMATIONS --- */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s var(--transition);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- NAVIGATION --- */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 1.5rem 3rem;
            /* Increased padding slightly for initial state */
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: transparent;
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
            border-bottom: 1px solid transparent;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            /* Smoother transition */
            color: white;
            /* Default text color white */
        }

        .navbar.scrolled {
            position: fixed;
            top: 20px;
            /* Floating effect */
            left: 50%;
            transform: translateX(-50%);
            width: 98%;
            /* Wider: 96% of viewport */
            max-width: 1300px;
            /* Increased max-width */
            background: rgba(255, 255, 255, 0.65);
            /* Liquid glass opacity */
            backdrop-filter: blur(16px) saturate(180%);
            /* Strong blur + saturation for glass effect */
            -webkit-backdrop-filter: blur(16px) saturate(180%);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 16px;
            /* Rounded pill shape */
            padding: 0.4rem 2rem;
            /* Compact padding */
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            color: var(--text-main);
            /* Text becomes black/dark */
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 8px;
            transition: opacity 0.3s;
        }

        .logo img {
            height: 100px;
            /* Adjust height as needed */
            width: auto;
            filter: brightness(0) invert(1);
            transition: filter 0.2s;
        }

        .navbar.scrolled .logo img {
            filter: none;
        }

        /* Removed span color style since logo is now an image */

        .nav-links {
            display: flex;
            gap: 2.5rem;
            align-items: center;
        }

        /* Hide mobile specific elements on desktop */
        .mobile-logo,
        .btn-mobile-cta {
            display: none;
        }

        .nav-links a {
            font-size: 1.05rem;
            /* Increased size */
            font-weight: 600;
            /* Increased weight */
            color: inherit;
            /* Inherit from navbar */
            transition: color 0.2s, opacity 0.2s;
            opacity: 0.9;
        }

        .nav-links a:hover {
            opacity: 1;
            color: inherit;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
        }

        .navbar.scrolled .nav-links a:hover {
            color: var(--primary);
            text-shadow: none;
        }

        .btn {
            padding: 0.6rem 1.4rem;
            border-radius: 100px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: transform 0.2s var(--transition), box-shadow 0.2s;
            cursor: pointer;
            border: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn:hover {
            transform: scale(1.03);
        }

        .btn-primary {
            background-color: var(--text-main);
            color: white;
            border: 1px solid var(--text-main);
        }

        .btn-primary:hover {
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }

        .btn-accent {
            background-color: var(--primary);
            color: white;
            box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
        }

        .btn-accent:hover {
            background-color: var(--primary-dark);
            box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
        }

        /* --- HERO SECTION --- */
        .hero {
            position: relative;
            padding: 160px 40px 100px;
            text-align: left;
            width: 100%;
            margin: 0;
            background-image: url('assets/herosection-final.png');
            background-size: cover;
            background-position: center;
            /* Desktop defaults to center */
            color: white;
            display: flex;
            align-items: center;
            min-height: 100vh;
            /* Full viewport height */
            overflow: hidden;
        }

        /* --- HAMBURGER --- */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            z-index: 1100;
            /* Higher than navbar */
        }

        .hamburger span {
            width: 28px;
            height: 3px;
            background-color: white;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        /* Use black bars when navbar is scrolled (liquid glass) */
        .navbar.scrolled .hamburger span {
            background-color: var(--text-main);
        }

        /* Animate Hamburger */
        .hamburger.active span:nth-child(1) {
            transform: translateY(9px) rotate(45deg);
            background-color: var(--text-main);
            /* Black when menu is open */
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: translateY(-9px) rotate(-45deg);
            background-color: var(--text-main);
        }

        /* --- MOBILE MENU --- */
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 100%;
                height: 100vh;
                background: rgba(0, 0, 0, 0.95);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
                z-index: 1050;
                /* Below hamburger but above everything else */
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links a {
                font-size: 1.5rem;
                color: white !important;
                /* Force white text */
                margin: 20px 0;
            }

            /* Hide the CTA in header on mobile */
            .navbar .btn {
                display: none;
            }

            /* Adjust Hero Padding for Mobile */
            .hero {
                padding: 120px 20px 60px;
                min-height: 60vh;
            }

            .hero h1 {
                font-size: 2.8rem;
            }
        }

        /* Overlay for better readability */
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            /* Bring content above overlay */
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        .badge {
            display: inline-block;
            padding: 6px 16px;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border-radius: 100px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 20px;
            backdrop-filter: blur(4px);
        }

        .hero h1 {
            font-size: 4.5rem;
            /* Larger font */
            line-height: 1.1;
            font-weight: 700;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
            color: white;
        }

        /* Hero-specific gradient text (lighter for dark background) */
        .gradient-text-hero {
            /* Since background is dark, white text is usually best, but can keep subtle gradient if desired. 
               For now, plain white is cleaner on photo backgrounds. */
            color: white;
        }

        .hero p {
            font-size: 1.35rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 600px;
            margin: 0 0 2.5rem;
            /* No auto margin to keep left align */
        }

        .btn-white-outline {
            background: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .btn-white-outline:hover {
            background: white;
            color: var(--text-main);
            border-color: white;
        }

        /* Removed hero-dashboard styles as element was removed */


        /* --- LOGO WALL --- */
        .trusted-by {
            padding: 40px 0;
            background: var(--bg-off);
            text-align: center;
        }

        .trusted-by p {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-secondary);
            margin-bottom: 20px;
        }

        .logos {
            display: flex;
            justify-content: center;
            gap: 40px;
            opacity: 0.6;
            filter: grayscale(100%);
        }

        /* --- FEATURES (Bento Grid) --- */
        .features {
            padding: 100px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 24px;
        }

        .card {
            background: var(--bg-off);
            padding: 32px;
            border-radius: 24px;
            border: 1px solid rgba(0, 0, 0, 0.03);
            transition: all 0.3s var(--transition);
            flex: 1 1 300px;
            max-width: 400px;
        }

        .card:hover {
            transform: translateY(-5px);
            background: #fff;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        }

        /* .card.large removed as strict grid is gone, flex handles sizing */

        .card-icon {
            font-size: 2rem;
            margin-bottom: 20px;
            display: inline-block;
            background: white;
            padding: 12px;
            border-radius: 16px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }

        .card h3 {
            font-size: 1.25rem;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .card p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* --- HOW IT WORKS (WhatsApp Flow) --- */
        .steps {
            background-color: #000;
            color: white;
            height: 250vh;
            /* Scroll track */
            position: relative;
            z-index: 10;
        }

        .steps-sticky-viewport {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #000;
        }

        .steps-container {
            max-width: 1000px;
            width: 100%;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 20px;
        }

        .steps-content {
            flex: 1;
            padding-right: 50px;
        }

        .step-item {
            margin-bottom: 40px;
            position: relative;
            padding-left: 30px;
            transition: opacity 0.3s;
            opacity: 0.4;
            /* Dimmed by default */
        }

        .step-item.active {
            opacity: 1;
            /* Highlight active */
        }

        .step-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 5px;
            width: 2px;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: background 0.3s ease;
        }

        .step-item.active::before {
            background: var(--success);
        }

        .steps-image {
            flex: 1;
            display: flex;
            justify-content: center;
        }

        .phone-mockup {
            width: 300px;
            border-radius: 40px;
            border: 8px solid #333;
            overflow: hidden;
            background: #e5e5e5;
        }

        /* --- PRICING --- */
        .pricing {
            padding: 100px 20px;
            background: var(--bg-off);
            text-align: center;
        }

        .pricing-card {
            background: white;
            max-width: 500px;
            margin: 0 auto;
            padding: 40px;
            border-radius: 32px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .price-tag {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--text-main);
            margin: 0;
            /* Removed vertical margin to let container handle it */
        }

        .price-tag span {
            font-size: 1rem;
            color: var(--text-secondary);
            font-weight: 400;
        }

        .price-container {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            margin: 20px 0;
        }

        .pricing-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 40px;
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
        }

        .pricing-mascot-external {
            width: 550px;
            height: auto;

        }

        @keyframes float {
            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-15px);
            }

            100% {
                transform: translateY(0px);
            }
        }

        @media (max-width: 900px) {
            .pricing-mascot-external {
                display: none;
            }
        }


        .features-list {
            text-align: left;
            margin: 30px 0;
        }

        .features-list li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-secondary);
        }

        .features-list li svg {
            color: var(--success);
            flex-shrink: 0;
        }

        .whatsapp-btn {
            background-color: #25D366;
            color: white;
            width: 100%;
            justify-content: center;
            padding: 1rem;
            font-size: 1.1rem;
        }

        .whatsapp-btn:hover {
            background-color: #1faf52;
            box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
        }

        /* --- FOOTER --- */
        footer {
            padding: 60px 20px;
            border-top: 1px solid #eee;
            text-align: center;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        /* --- SCROLL SEQUENCE SECTION (JS Pinning) --- */
        .scroll-sequence-section {
            height: 400vh;
            position: relative;
            background: var(--bg-off);
            z-index: 10;
        }

        .sticky-viewport {
            position: absolute;
            top: 0;
            left: 0;
            height: 100vh;
            width: 100%;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slide {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            max-width: 1250px;
            padding: 0 40px;
            will-change: opacity, transform;
        }

        /* Initial States */
        .slide-1 {
            opacity: 1;
            transform: translate(-50%, -50%);
            z-index: 1;
        }

        .slide-2 {
            opacity: 0;
            transform: translate(-50%, 0%);
            /* Starts lower for better effect */
            z-index: 2;
        }

        .slide-3 {
            opacity: 0;
            transform: translate(-50%, 0%);
            z-index: 3;
        }

        /* Reuse internal layout */
        .split-container {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 50px;
            align-items: center;
            width: 100%;
        }

        .split-text h2 {
            font-size: 2.25rem;
            margin-bottom: 2rem;
            color: var(--text-main);
            line-height: 1.2;
        }

        .check-list {
            list-style: none;
        }

        .check-list li {
            display: flex;
            gap: 15px;
            margin-bottom: 25px;
            align-items: flex-start;
        }

        .check-icon {
            background: var(--success);
            color: white;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 14px;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .check-list p {
            font-size: 1.1rem;
            color: var(--text-secondary);
            line-height: 1.6;
            margin: 0;
        }

        .check-list strong {
            color: var(--text-main);
            font-weight: 600;
        }

        .split-image {
            position: relative;
            display: flex;
            justify-content: flex-end;
        }

        .dashboard-img {
            width: 700px;
            max-width: 1300px;
            height: auto;
            border-radius: 16px;
            box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
            border: 1px solid rgba(0, 0, 0, 0.08);
            background: white;
        }

        @media (max-width: 900px) {
            .split-container {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .check-list li {
                text-align: left;
            }

            .split-image {
                justify-content: center;
            }

            .dashboard-img {
                max-width: 100%;
            }

            @media (max-width: 900px) {
                .slide {
                    position: relative;
                    top: auto;
                    left: auto;
                    transform: none !important;
                    opacity: 1 !important;
                    pointer-events: all;
                    padding: 60px 20px;
                }

                /* Disable sticky effect on mobile for better UX */
                .scroll-sequence-section {
                    height: auto;
                }

                .sticky-viewport {
                    height: auto;
                    position: static;
                    display: block;
                }

                /* Mobile resets for Steps section */
                .steps {
                    height: auto;
                    padding: 60px 20px;
                }

                .steps-sticky-viewport {
                    position: relative;
                    height: auto;
                    top: auto;
                    left: auto;
                    display: block;
                    overflow: visible;
                }

                .step-item {
                    opacity: 1 !important;
                }

                .steps-container {
                    flex-direction: column;
                    padding: 0;
                }

                .steps-content {
                    padding-right: 0;
                    margin-bottom: 40px;
                }

                .steps-content h2 {
                    font-size: 2rem !important;
                    line-height: 1.2;
                }

                /* Force reveal elements to show on mobile/tablet to avoid JS timing issues */
                .reveal {
                    opacity: 1 !important;
                    transform: none !important;
                }
            }

            /* --- RESPONSIVE --- */
            @media (max-width: 768px) {
                .hero h1 {
                    font-size: 2.8rem;
                }

                .grid {
                    grid-template-columns: 1fr;
                }

                .card.large {
                    grid-column: auto;
                }

                .steps-container {
                    flex-direction: column;
                }

                .steps-content {
                    padding-right: 0;
                    margin-bottom: 40px;
                }



                /* Mobile Nav - Overlay (White BG, Black Text) */
                .nav-links {
                    position: fixed;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100vh;
                    background: white;
                    flex-direction: column;
                    justify-content: flex-start;
                    align-items: center;
                    padding-top: 100px;
                    /* Space for header */
                    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
                    z-index: 1050;
                    display: flex;
                    transform: translateX(100%);
                    /* Hidden off-screen to the right */
                }

                .nav-links.active {
                    transform: translateX(0);
                    /* Slide in */
                }

                .nav-links a {
                    font-size: 1.1rem;
                    font-weight: 600;
                    color: var(--text-main) !important;
                    /* Black text */
                    padding: 18px 24px;
                    margin: 8px 20px;
                    display: block;
                    width: calc(100% - 40px);
                    border: 1px solid #e5e5e5;
                    border-radius: 12px;
                    text-align: left;
                    background: white;
                    transition: background 0.2s, border-color 0.2s;
                }

                .nav-links a:hover {
                    background: var(--bg-off);
                    border-color: var(--primary);
                }

                .hamburger {
                    display: flex;
                }

                .navbar .btn {
                    display: none;
                }

                /* Mobile Hero */
                .hero {
                    padding: 120px 20px 60px;
                    min-height: 100vh;
                    background-image: url('assets/herosection-mobile.svg');
                    /* Mobile-optimized image */
                    background-position: center center;
                }

                .hero-mascot {
                    display: none;
                }
            }

            /* --- MASCOT & VIDEO --- */
            .hero-mascot {
                position: absolute;
                width: 150px;
                top: 100px;
                right: 15%;
                z-index: -1;
                opacity: 0.8;
                pointer-events: none;
            }

            .floating {
                animation: float 6s ease-in-out infinite;
            }

            @keyframes float {
                0% {
                    transform: translateY(0px) rotate(0deg);
                }

                50% {
                    transform: translateY(-20px) rotate(5deg);
                }

                100% {
                    transform: translateY(0px) rotate(0deg);
                }
            }

            .demo-section {
                padding: 100px 20px;
                max-width: 1000px;
                margin: 0 auto;
                text-align: center;
            }

            .video-container {
                border-radius: 24px;
                overflow: hidden;
                box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
                border: 8px solid white;
                background: #000;
            }

            .video-container video {
                width: 100%;
                display: block;
            }

            @media (max-width: 1024px) {
                .hero-mascot {
                    width: 100px;
                    top: 50px;
                    right: 5%;
                }
            }
        }

        /* --- FIX PARA MÓVILES --- */
        /* Forzar visibilidad de elementos en pantallas táctiles/móviles */
        @media (max-width: 900px) {

            .reveal,
            .reveal.active,
            .hero-content,
            .card,
            .pricing-card {
                opacity: 1 !important;
                transform: none !important;
                transition: none !important;
                visibility: visible !important;
            }

            /* Asegurar que las slides de la sección sticky no se queden ocultas */
            .slide {
                opacity: 1 !important;
                transform: none !important;
                position: relative !important;
                top: auto !important;
                left: auto !important;
            }
        }