/* ============================================
           CSS RESET & BASE
           ============================================ */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            /* Blue brand palette */
            --brand-blue-50: #EFF6FF;
            --brand-blue-100: #DBEAFE;
            --brand-blue-300: #93C5FD;
            --brand-blue-400: #60A5FA;
            --brand-blue-500: #3B82F6;
            --brand-blue-600: #2563EB;
            --brand-blue-700: #1D4ED8;
            --brand-blue-800: #1E3A8A;
            --brand-blue-900: #0B1B4F;
            --brand-surface: #FFFFFF;
            --brand-ink: var(--brand-blue-900);

            /* Shared semantic tokens */
            --telda: var(--brand-blue-500);
            --telda-dark: var(--brand-blue-800);
            --telda-light: var(--brand-blue-50);
            --whatsapp: var(--brand-blue-500);
            --whatsapp-dark: var(--brand-blue-800);
            --foreground: var(--brand-ink);
            --muted-foreground: #36507d;
            --background: var(--brand-surface);
            --border: #c7d8f8;
            --card: var(--brand-surface);
            --muted: var(--brand-blue-50);

            /* Utility tokens for reusable inline styles */
            --surface-soft: var(--brand-blue-50);
            --accent-strong: var(--brand-blue-600);
            --blue-400: var(--brand-blue-400);
            --blue-500: var(--brand-blue-500);
            --blue-600: var(--brand-blue-600);
            --blue-800: var(--brand-blue-800);
            --footer-muted: var(--brand-blue-100);
            
            /* Spacing */
            --radius: 0.75rem;
            
            /* Transitions */
            --transition: all 0.3s ease;
        }

        html {
            scroll-behavior: smooth;
        }

        /* ============================================
           CUSTOM SCROLLBAR
           ============================================ */
        html {
            scrollbar-width: thin;
            scrollbar-color: #3b82f6 #dbeafe;
        }

        body::-webkit-scrollbar {
            width: 0.85rem;
        }

        body::-webkit-scrollbar-track {
            background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%);
            border-radius: 999px;
        }

        body::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, #38bdf8 0%, #3b82f6 50%, #1e40af 100%);
            background-size: 100% 200%;
            border-radius: 999px;
            border: 2px solid #dbeafe;
            box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.35);
            animation: scrollbarShift 3.2s ease-in-out infinite;
            transition: box-shadow 0.25s ease, border-color 0.25s ease;
        }

        body::-webkit-scrollbar-thumb:hover {
            border-color: #bfdbfe;
            box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.18);
        }

        body::-webkit-scrollbar-corner {
            background: #dbeafe;
        }

        @keyframes scrollbarShift {
            0% {
                background-position: 50% 0%;
            }
            50% {
                background-position: 50% 100%;
            }
            100% {
                background-position: 50% 0%;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            body::-webkit-scrollbar-thumb {
                animation: none;
            }
        }

        body {
            font-family: 'Outfit', 'Alexandria', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--background);
            color: var(--foreground);
            line-height: 1.6;
            overflow-x: hidden;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        html[lang="ar"] body {
            font-family: 'Alexandria', 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
        }

        /* ============================================
           PAGE LOADER ANIMATION
           ============================================ */
        #telda-loader {
            position: fixed;
            inset: 0;
            z-index: 9999;
            background: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        #telda-loader .glow-orb {
            position: absolute;
            width: min(72vw, 500px);
            height: min(72vw, 500px);
            background: radial-gradient(circle, rgba(59, 130, 246, 0.95) 0%, rgba(59, 130, 246, 0) 70%);
            border-radius: 50%;
            opacity: 0;
            transform: scale(0.84);
            pointer-events: none;
            transition: opacity 1.5s ease, transform 1.5s ease;
        }

        #telda-loader .word {
            position: relative;
            z-index: 1;
            display: flex;
            direction: ltr;
        }

        #telda-loader .letter {
            font-family: 'Outfit', 'Alexandria', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            font-size: clamp(4rem, 12vw, 9rem);
            font-weight: 800;
            letter-spacing: -0.04em;
            color: #0f172a;
            opacity: 0;
            transform: translateY(40px);
            filter: blur(10px);
            display: inline-block;
            transition: opacity 0.8s cubic-bezier(0.2, 0.65, 0.3, 0.9), transform 0.8s cubic-bezier(0.2, 0.65, 0.3, 0.9), filter 0.8s cubic-bezier(0.2, 0.65, 0.3, 0.9), color 0.6s ease, text-shadow 0.6s ease;
        }

        #telda-loader .letter.visible {
            opacity: 1;
            transform: translateY(0);
            filter: blur(0);
        }

        #telda-loader .letter.glow {
            color: #3b82f6;
            text-shadow: 0 0 20px rgba(59, 130, 246, 0.7), 0 0 40px rgba(59, 130, 246, 0.5), 0 0 60px rgba(59, 130, 246, 0.3);
        }

        #telda-loader .letter.settle {
            color: #1d4ed8;
            text-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
        }

        #telda-loader.exit {
            transition: transform 0.9s cubic-bezier(0.76, 0, 0.24, 1);
            transform: translateY(-100%);
        }

        #page-content {
            opacity: 0;
            transition: opacity 0.8s ease;
        }

        #page-content.visible {
            opacity: 1;
        }

        @media (prefers-reduced-motion: reduce) {
            #telda-loader {
                display: none;
            }

            #page-content {
                opacity: 1;
                transition: none;
            }
        }


        /* ============================================
           TYPOGRAPHY
           ============================================ */
        h1, h2, h3, h4, h5, h6 {
            font-weight: 800;
            line-height: 1.3;
        }

        h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
        h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
        h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

        p { color: var(--muted-foreground); }

        a {
            color: inherit;
            text-decoration: none;
        }

        /* ============================================
           LAYOUT UTILITIES
           ============================================ */
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        @media (min-width: 768px) {
            .container { padding: 0 2rem; }
        }

        /* ============================================
           HEADER
           ============================================ */
        .header {
            position: fixed;
            top: 0;
            right: 0;
            left: 0;
            z-index: 1800;
            background: transparent;
            border-bottom: 1px solid transparent;
            transition: background-color 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
        }

        .header.scrolled,
        .header:hover,
        .header:focus-within {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
            border-bottom: 1px solid rgba(226, 232, 240, 0.9);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 76px;
            gap: 1rem;
            padding-inline: 0.4rem;
            margin-top: 0;
            transition: margin-top 0.35s ease;
        }

        @media (max-width: 767px) {
            .header-inner {
                height: 72px;
                gap: 0.65rem;
                padding-inline: 0.1rem;
            }
        }

        .header.in-hero .header-inner {
            margin-top: 10px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transform-origin: center;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--telda), var(--telda-dark));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 800;
            font-size: 1.25rem;
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: #ffffff;
            text-shadow: 0 6px 18px rgba(10, 24, 68, 0.35);
        }


        .nav {
            display: none;
        }

        @media (min-width: 768px) {
            .header-inner {
                justify-content: flex-start;
            }

            .nav {
                display: flex;
                align-items: center;
                gap: 2rem;
                margin-inline-start: 1.5rem;
            }

            .header-controls {
                margin-inline-start: auto;
            }
        }

        .nav a {
            color: rgba(255, 255, 255, 0.92);
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }

        .nav a:hover {
            color: #ffffff;
        }

        .header.scrolled .logo-text,
        .header:hover .logo-text,
        .header:focus-within .logo-text {
            color: var(--foreground);
            text-shadow: none;
        }

        .header.scrolled .nav a,
        .header:hover .nav a,
        .header:focus-within .nav a {
            color: var(--muted-foreground);
        }

        .header.scrolled .nav a:hover,
        .header:hover .nav a:hover,
        .header:focus-within .nav a:hover {
            color: var(--foreground);
        }

        .nav a::after {
            content: '';
            position: absolute;
            right: 0;
            left: 0;
            bottom: -6px;
            height: 2px;
            background: var(--telda);
            transform: scaleX(0);
            transform-origin: center;
            transition: transform 0.2s ease;
        }

        .nav a:hover::after {
            transform: scaleX(1);
        }

        .header-cta {
            display: none;
        }

        .header-controls {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .lang-toggle {
            min-width: 56px;
            height: 42px;
            padding: 0 0.875rem;
            border-radius: 14px;
            border: 1px solid var(--border);
            background: rgba(255, 255, 255, 0.94);
            color: var(--foreground);
            font-size: 0.82rem;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
        }

        .lang-toggle:hover {
            transform: translateY(-1px);
            border-color: rgba(59, 130, 246, 0.55);
            box-shadow: 0 10px 20px rgba(30, 58, 138, 0.14);
        }

        .mobile-lang-toggle {
            display: none;
        }

        @media (min-width: 768px) {
            .header-cta {
                display: block;
            }
        }

        .mobile-menu-btn {
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 5px;
            width: 44px;
            height: 44px;
            background:transparent;
            border: none;
            cursor: pointer;
            padding: 8px;
            z-index: 1650;
            border-radius: 14px;
            transition: transform 0.24s ease, background-color 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
        }

        .mobile-menu-btn:hover {
            background: rgba(255, 255, 255, 0.18);
            border-color: rgba(255, 255, 255, 0.4);
            box-shadow: 0 10px 22px rgba(12, 30, 72, 0.22);
            transform: translateY(-1px);
        }

        .mobile-menu-btn:active {
            transform: scale(0.96);
        }

        @media (min-width: 768px) {
            .mobile-menu-btn { display: none; }
        }

        .mobile-menu-btn span {
            display: block;
            width: 24px;
            height: 2px;
            border-radius: 999px;
            background: #ffffff;
            transform-origin: center;
            transition: transform 0.26s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease, background-color 0.24s ease;
        }

        .header.scrolled .mobile-menu-btn span,
        .header:hover .mobile-menu-btn span,
        .header:focus-within .mobile-menu-btn span,
        body.menu-open .mobile-menu-btn span {
            background: var(--foreground);
        }

        .header.scrolled .mobile-menu-btn:hover,
        .header:hover .mobile-menu-btn:hover,
        .header:focus-within .mobile-menu-btn:hover {
            background: rgba(15, 23, 42, 0.06);
        }

        .mobile-menu-btn.active {
            animation: mobileMenuBtnPop 0.34s cubic-bezier(0.22, 1, 0.36, 1) 1;
        }

        .mobile-menu-btn.active span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-btn.active span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        body.menu-open .mobile-menu-btn {
            position: fixed;
            top: calc(env(safe-area-inset-top, 0px) + 0.9rem);
            inset-inline-end: 0.9rem;
            z-index: 1760;
            background: rgba(255, 255, 255, 0.96);
            border-color: rgba(186, 209, 245, 0.95);
            box-shadow: 0 12px 24px rgba(11, 27, 79, 0.18);
        }

        @keyframes mobileMenuBtnPop {
            0% {
                transform: scale(0.84) rotate(-4deg);
            }
            60% {
                transform: scale(1.05) rotate(2deg);
            }
            100% {
                transform: scale(1) rotate(0deg);
            }
        }

        .mobile-menu-overlay {
            position: fixed;
            inset: 0;
            background: rgba(11, 27, 79, 0.55);
            backdrop-filter: blur(1px);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.35s ease, visibility 0.35s ease;
            z-index: 1550;
        }

        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .mobile-nav {
            position: fixed;
            inset: 0;
            background: linear-gradient(180deg, rgba(239, 246, 255, 0.985), rgba(219, 234, 254, 0.975));
            border: 1px solid rgba(167, 193, 237, 0.95);
            border-radius: 0;
            box-shadow: 0 30px 56px rgba(11, 27, 79, 0.2);
            padding: calc(env(safe-area-inset-top, 0px) + 5.6rem) 1rem calc(env(safe-area-inset-bottom, 0px) + 1.4rem);
            display: flex;
            flex-direction: column;
            gap: 0.65rem;
            height: 100dvh;
            max-height: 100vh;
            overflow-y: auto;
            overscroll-behavior: contain;
            -webkit-overflow-scrolling: touch;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-22px) scale(0.985);
            pointer-events: none;
            transition: opacity 0.34s ease, transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.34s ease;
            z-index: 1600;
        }

     
        .mobile-nav.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
            pointer-events: auto;
        }

        .mobile-nav-shell {
            display: flex;
            flex-direction: column;
            gap: 0.65rem;
            min-height: 100%;
        }

        .mobile-nav-links {
            display: flex;
            flex-direction: column;
            gap: 0.65rem;
        }

        .mobile-nav .mobile-nav-links > * {
            opacity: 0;
            transform: translateY(14px);
            transition: opacity 0.3s ease, transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
            will-change: opacity, transform;
        }

        .mobile-nav.active .mobile-nav-links > * {
            opacity: 1;
            transform: translateY(0);
        }

        .mobile-nav.active .mobile-nav-links > *:nth-child(1) { transition-delay: 0.05s; }
        .mobile-nav.active .mobile-nav-links > *:nth-child(2) { transition-delay: 0.08s; }
        .mobile-nav.active .mobile-nav-links > *:nth-child(3) { transition-delay: 0.11s; }
        .mobile-nav.active .mobile-nav-links > *:nth-child(4) { transition-delay: 0.14s; }
        .mobile-nav.active .mobile-nav-links > *:nth-child(5) { transition-delay: 0.17s; }
        .mobile-nav.active .mobile-nav-links > *:nth-child(6) { transition-delay: 0.2s; }
        .mobile-nav.active .mobile-nav-links > *:nth-child(7) { transition-delay: 0.23s; }

        .mobile-nav:not(.active) .mobile-login-primary {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transform: translateY(12px);
        }

        .mobile-nav a {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            min-height: 52px;
            padding: 0.9rem 1rem;
            color: var(--brand-ink);
            font-size: 0.98rem;
            font-weight: 700;
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid #bad1f5;
            transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
        }

        .mobile-nav a:hover {
            background: #ffffff;
            border-color: rgba(59, 130, 246, 0.52);
            color: var(--brand-blue-800);
            box-shadow: 0 8px 18px rgba(29, 78, 216, 0.16);
            transform: translateY(-1px);
        }

        html[dir="rtl"] .mobile-nav a {
            justify-content: flex-end;
        }

        .mobile-nav .menu-soon {
            margin-inline-start: 0.5rem;
            padding: 0.2rem 0.52rem;
            border-radius: 999px;
            font-size: 0.72rem;
            font-weight: 800;
            color: #0f172a;
            background: #dbeafe;
            border: 1px solid #93c5fd;
        }

        .mobile-nav .mobile-nav-contact {
            background: linear-gradient(135deg, var(--brand-blue-500), var(--brand-blue-800));
            border-color: transparent;
            color: #ffffff;
            box-shadow: 0 12px 24px rgba(29, 78, 216, 0.24);
        }

        .mobile-nav .mobile-nav-contact:hover {
            color: #ffffff;
            background: linear-gradient(135deg, #2563eb, #1d4ed8);
            border-color: transparent;
        }

        .mobile-nav .mobile-login-primary {
            order: -1;
            background: linear-gradient(135deg, var(--brand-blue-500), var(--brand-blue-800));
            color: #ffffff;
            border-color: transparent;
            box-shadow: 0 12px 24px rgba(29, 78, 216, 0.24);
            display: flex;
            visibility: visible;
            opacity: 1;
            transform: translateY(12px);
            transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
        }

        .mobile-nav.active .mobile-login-primary {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .mobile-nav .mobile-login-primary:hover {
            color: #ffffff;
            background: linear-gradient(135deg, #2563eb, #1d4ed8);
            border-color: transparent;
        }

        .mobile-nav-actions {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            margin-top: auto;
            padding-top: 0.8rem;
            border-top: 1px dashed rgba(148, 163, 184, 0.35);
        }

        .mobile-nav-actions .lang-toggle {
            width: 100%;
            min-height: 48px;
        }

        .mobile-login-btn {
            width: 100%;
            min-height: 48px;
            border-width: 1px;
            border-color: #bfdbfe;
            background: #ffffff;
            color: #0f172a;
            font-weight: 700;
        }

        .mobile-login-btn:hover {
            border-color: var(--brand-blue-500);
            color: var(--brand-blue-800);
        }

        body.menu-open {
            overflow: hidden;
        }

        body.menu-open .floating-whatsapp {
            opacity: 0 !important;
            visibility: hidden !important;
            pointer-events: none;
            transform: translateY(18px) scale(0.92);
        }

        @media (max-width: 767px) {
            .header-controls .lang-toggle {
                display: none;
            }

            .mobile-lang-toggle {
                display: inline-flex;
                align-items: center;
                justify-content: center;
            }
        }

        @media (min-width: 768px) {
            .mobile-menu-overlay,
            .mobile-nav {
                display: none;
            }
        }

        /* ============================================
           BUTTONS
           ============================================ */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            border-radius: var(--radius);
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease, background-color 0.28s ease, border-color 0.28s ease, color 0.28s ease;
            border: none;
            text-decoration: none;
        }

        .btn:hover {
            transform: translateY(-2px);
        }

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

        .btn-primary {
            background: linear-gradient(135deg, var(--brand-blue-500), var(--brand-blue-800));
            color: white;
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, #2563eb, #1d4ed8);
            box-shadow: 0 12px 22px rgba(29, 78, 216, 0.32);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--border);
            color: var(--foreground);
        }

        .btn-outline:hover {
            border-color: var(--telda);
            color: var(--telda);
            box-shadow: 0 10px 24px rgba(59, 130, 246, 0.2);
        }

        .btn-telda {
            background: var(--telda);
            color: white;
        }

        .btn-telda:hover {
            background: var(--telda-dark);
            box-shadow: 0 12px 24px rgba(29, 78, 216, 0.25);
        }

        .btn-white {
            background: white;
            color: var(--telda);
        }

        .btn-white:hover {
            background: var(--muted);
            box-shadow: 0 10px 20px rgba(15, 23, 42, 0.1);
        }

        /* Pulse animation for WhatsApp */
        @keyframes pulse-whatsapp {
            0%, 100% {
                box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.35);
            }
            50% {
                box-shadow: 0 0 0 15px rgba(59, 130, 246, 0);
            }
        }

        .btn-pulse {
            animation: pulse-whatsapp 4s ease-in-out infinite;
        }

        .floating-whatsapp {
            position: fixed;
            bottom: 1.2rem;
            width: 58px;
            height: 58px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--whatsapp);
            color: #ffffff;
            box-shadow: 0 16px 30px rgba(30, 64, 175, 0.35);
            z-index: 1300;
            opacity: 0;
            visibility: hidden;
            transform: translateY(18px) scale(0.92);
            transition: opacity 0.35s ease, transform 0.35s ease, background-color 0.25s ease;
        }

        html[dir="ltr"] .floating-whatsapp {
            left: 1.2rem;
        }

        html[dir="rtl"] .floating-whatsapp {
            right: 1.2rem;
        }

        .floating-whatsapp.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }

        .floating-whatsapp:hover {
            transform: translateY(-3px) scale(1.04);
            background: var(--whatsapp-dark);
        }

        .floating-whatsapp svg {
            width: 26px;
            height: 26px;
        }

        @keyframes whatsapp-enter {
            from {
                opacity: 0;
                transform: translateY(18px) scale(0.92);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* ============================================
           HERO SECTION
           ============================================ */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 70px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, var(--brand-blue-900) 0%, var(--brand-blue-800) 50%, var(--brand-blue-600) 100%);
            background-size: 200% 200%;
            border-radius: 15px;
            margin: 10px;
            opacity: 0;
            transform: translateY(38px);
            transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
            --hero-anim-state: paused;
            animation: heroGradientFlow 12s ease infinite;
        }

        @keyframes heroGradientFlow {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .hero.hero-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .hero.hero-content-ready {
            --hero-anim-state: running;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
            pointer-events: none;
        }

        .hero-blob-1 {
            position: absolute;
            top: -10%;
            right: -5%;
            width: 50vw;
            height: 50vw;
            background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            animation: heroBlobFloatA 15s ease-in-out infinite alternate;
        }

        .hero-blob-2 {
            position: absolute;
            bottom: -20%;
            left: -10%;
            width: 60vw;
            height: 60vw;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            animation: heroBlobFloatB 18s ease-in-out infinite alternate;
        }

        @keyframes heroBlobFloatA {
            0% { transform: translate(0, 0) scale(1); }
            100% { transform: translate(-50px, 30px) scale(1.05); }
        }

        @keyframes heroBlobFloatB {
            0% { transform: translate(0, 0) scale(1); }
            100% { transform: translate(40px, -40px) scale(1.1); }
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: clamp(1.8rem, 4vw, 3rem);
            align-items: center;
            position: relative;
            z-index: 1;
        }

        @media (min-width: 1024px) {
            .hero-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        .hero-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        @media (min-width: 1024px) {
            .hero-content {
                align-items: flex-start;
                text-align: right;
            }
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.2);
            color: #eff6ff;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 500;
            margin-bottom: 1.5rem;
            opacity: 0;
            transform: translateY(12px);
            animation: heroSoftReveal 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.02s forwards;
            animation-play-state: var(--hero-anim-state);
            backdrop-filter: blur(6px);
            border: 1px solid rgba(255, 255, 255, 0.35);
        }

        .hero-badge svg {
            width: 16px;
            height: 16px;
        }

        .hero h1 {
            font-size: clamp(2rem, 6vw, 3.6rem);
            line-height: 1.2;
            margin-bottom: 1.5rem;
            opacity: 0;
            transform: translateY(14px);
            animation: heroSoftReveal 0.74s cubic-bezier(0.22, 1, 0.36, 1) 0.08s forwards;
            animation-play-state: var(--hero-anim-state);
            color: #ffffff;
        }

        .hero-subtitle {
            font-size: clamp(1rem, 1.8vw, 1.2rem);
            margin-bottom: 2rem;
            color: rgba(255, 255, 255, 0.9);
            opacity: 0;
            transform: translateY(12px);
            animation: heroSoftReveal 0.74s cubic-bezier(0.22, 1, 0.36, 1) 0.32s forwards;
            animation-play-state: var(--hero-anim-state);
            line-height: 1.55;
            max-inline-size: min(60ch, 100%);
            margin-inline: auto;
            text-wrap: balance;
            min-block-size: calc(1.55em * 2);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            text-align: inherit;
        }

        .hero-subtitle.hero-subtitle-animated {
            animation-play-state: var(--hero-anim-state);
        }

        .hero-subtitle .hero-subtitle-track {
            position: relative;
            display: inline;
            max-inline-size: 100%;
            color: rgba(255, 255, 255, 0.95);
            text-shadow: 0 2px 14px rgba(6, 17, 56, 0.22);
        }

        .hero-subtitle .hero-subtitle-text {
            white-space: normal;
            text-wrap: balance;
        }

        .hero-subtitle .hero-subtitle-track::after {
            content: '';
            display: inline-block;
            width: 2px;
            height: 1.18em;
            margin-inline-start: 0.24rem;
            vertical-align: -0.16em;
            background: rgba(255, 255, 255, 0.9);
            opacity: 0;
        }

        .hero-subtitle .hero-subtitle-track.is-typing-active::after {
            opacity: 1;
            animation: heroSubtitleCursorBlink 0.75s step-end infinite;
        }

        .hero-buttons .btn .btn-label {
            display: inline-block;
        }

        #heroBadgeText,
        #heroTitle,
        #heroSubtitle {
            will-change: transform, opacity;
        }

        #heroBadgeText {
            animation: heroBadgeShine 9s linear infinite;
            animation-play-state: var(--hero-anim-state);
            background: linear-gradient(110deg, #dbeafe 0%, #ffffff 30%, #93c5fd 55%, #ffffff 80%);
            background-size: 220% auto;
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        #heroTitle {
            animation: heroSoftReveal 0.74s cubic-bezier(0.22, 1, 0.36, 1) 0.08s forwards;
            animation-play-state: var(--hero-anim-state);
        }

        #heroSubtitle {
            animation-play-state: var(--hero-anim-state);
        }

        @keyframes heroBadgeShine {
            0% { background-position: 200% center; }
            100% { background-position: -20% center; }
        }

        @keyframes heroSubtitleCursorBlink {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0;
            }
        }

        @keyframes heroGradientFlow {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }

        @keyframes heroOverlayFlow {
            0%,
            100% {
                opacity: 0.45;
                transform: translate3d(-1.5%, -1.5%, 0) scale(1);
            }
            50% {
                opacity: 0.7;
                transform: translate3d(1.5%, 1.5%, 0) scale(1.02);
            }
        }

        @keyframes heroBlobFloatA {
            0%,
            100% {
                transform: translate3d(0, 0, 0) scale(1);
            }
            50% {
                transform: translate3d(-14px, 16px, 0) scale(1.06);
            }
        }

        @keyframes heroBlobFloatB {
            0%,
            100% {
                transform: translate3d(0, 0, 0) scale(1);
            }
            50% {
                transform: translate3d(18px, -12px, 0) scale(1.05);
            }
        }

        @keyframes heroButtonSheen {
            0%,
            68%,
            100% {
                transform: translateX(-135%);
                opacity: 0;
            }
            72% {
                opacity: 0.56;
            }
            84% {
                transform: translateX(135%);
                opacity: 0;
            }
        }

        @keyframes heroSoftReveal {
            from {
                transform: translateY(12px);
                opacity: 0;
                filter: blur(1.6px);
            }
            to {
                transform: translateY(0);
                opacity: 1;
                filter: blur(0);
            }
        }

        @keyframes heroVisualRise {
            from {
                opacity: 0;
                transform: translate3d(0, 28px, 0) scale(0.985);
                filter: blur(1.8px);
            }
            to {
                opacity: 1;
                transform: translate3d(0, 0, 0) scale(1);
                filter: blur(0);
            }
        }

        .hero-animated-text {
            display: inline-block;
            margin-bottom: 1.2rem;
            font-size: 0.95rem;
            font-weight: 700;
            color: rgba(219, 234, 254, 0.95);
            overflow: hidden;
            white-space: nowrap;
            border-left: 2px solid rgba(255, 255, 255, 0.9);
            padding-inline-start: 0.45rem;
            width: 0;
            max-width: 24ch;
            animation: heroTyping 5s steps(28, end) infinite, heroCaret 0.7s step-end infinite;
            animation-play-state: var(--hero-anim-state);
        }

        @keyframes heroTyping {
            0% { width: 0; }
            45% { width: 24ch; }
            75% { width: 24ch; }
            100% { width: 0; }
        }

        @keyframes heroCaret {
            0%, 100% { border-color: transparent; }
            50% { border-color: rgba(255, 255, 255, 0.95); }
        }

        .hero-buttons {
            display: grid;
            grid-template-columns: minmax(0, 1fr);
            gap: 0.85rem;
            justify-content: center;
            margin-bottom: 2rem;
            max-width: 620px;
            margin-inline: auto;
        }

        .hero-buttons .btn {
            width: 100%;
            min-height: 58px;
            padding: 0.9rem 1rem;
            border-radius: 14px;
            border: 1px solid transparent;
            font-size: 0.96rem;
            font-weight: 700;
            letter-spacing: 0.01em;
            box-shadow: 0 10px 20px rgba(15, 23, 42, 0.18);
            backdrop-filter: blur(6px);
            position: relative;
            overflow: hidden;
            isolation: isolate;
            border-color: rgba(255, 255, 255, 0.18);
            opacity: 0;
            transform: translateY(12px);
            filter: blur(1.2px);
            animation: heroSoftReveal 0.64s cubic-bezier(0.22, 1, 0.36, 1) forwards;
            animation-play-state: var(--hero-anim-state);
        }

        .hero-buttons .btn:nth-child(1) { animation-delay: 0.62s; }
        .hero-buttons .btn:nth-child(2) { animation-delay: 0.78s; }

        .hero-buttons .btn:hover {
            transform: translateY(-3px);
        }

        .hero-buttons .btn:active {
            transform: translateY(-1px);
        }

        .hero-buttons .btn::before {
            content: '';
            position: absolute;
            inset: -1px;
            background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.06) 36%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.06) 64%, transparent 100%);
            transform: translateX(-135%);
            opacity: 0;
            pointer-events: none;
            animation: heroButtonSheen 8.8s ease-in-out infinite;
            animation-play-state: var(--hero-anim-state);
        }

        .hero-buttons .btn:nth-child(2)::before {
            animation-delay: 1.4s;
        }

        .hero-buttons .btn:focus-visible {
            outline: 3px solid rgba(255, 255, 255, 0.5);
            outline-offset: 2px;
        }

        .hero-buttons .btn .btn-icon {
            width: 2rem;
            height: 2rem;
            border-radius: 10px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            position: relative;
            z-index: 1;
            transition: transform 0.26s ease, background-color 0.26s ease;
        }

        .hero-buttons .btn .btn-icon svg {
            width: 18px;
            height: 18px;
        }

        .hero-buttons .btn .btn-label {
            white-space: normal;
            text-wrap: balance;
            text-align: center;
            line-height: 1.3;
            position: relative;
            z-index: 1;
        }

        .hero-buttons .btn:hover .btn-icon {
            transform: translateY(-1px) scale(1.03);
        }

        .hero-buttons .btn-primary {
            background: linear-gradient(135deg, #ffffff, #dbeafe);
            color: #1e3a8a;
            box-shadow: 0 14px 26px rgba(7, 17, 53, 0.24);
            border-color: rgba(255, 255, 255, 0.82);
        }

        .hero-buttons .btn-primary .btn-icon {
            background: rgba(30, 58, 138, 0.12);
            color: #1e3a8a;
        }

        .hero-buttons .btn-primary:hover {
            background: linear-gradient(135deg, #ffffff, #bfdbfe);
            color: #1d4ed8;
        }

        .hero-buttons .btn-outline {
            background: rgba(255, 255, 255, 0.12);
            border-width: 1.5px;
            border-color: rgba(219, 234, 254, 0.8);
            color: #eff6ff;
            box-shadow: 0 10px 20px rgba(6, 17, 56, 0.2);
        }

        .hero-buttons .btn-outline .btn-icon {
            background: rgba(255, 255, 255, 0.14);
            color: #eff6ff;
        }

        .hero-buttons .btn-outline:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.92);
            color: #ffffff;
            box-shadow: 0 14px 26px rgba(6, 17, 56, 0.25);
        }

        .hero .btn-pulse {
            animation-play-state: var(--hero-anim-state);
        }

        @media (prefers-reduced-motion: reduce) {
            .hero,
            .hero.hero-visible,
            .hero::before,
            .hero-blob-1,
            .hero-blob-2 {
                animation: none !important;
                opacity: 1 !important;
                transform: none !important;
                transition: none !important;
            }

            .hero-badge,
            .hero h1,
            .hero-buttons,
            .hero-buttons .btn,
            .hero-subtitle.hero-subtitle-animated,
            .hero-visual,
            .hero-subtitle .hero-subtitle-track,
            .hero-buttons .btn .btn-label,
            #heroTitle {
                animation: none !important;
                opacity: 1 !important;
                transform: none !important;
                filter: none !important;
            }

            .hero-subtitle .hero-subtitle-track::after {
                animation: none !important;
                opacity: 0 !important;
            }

            .hero-buttons .btn::before {
                animation: none !important;
            }
        }

        @media (min-width: 640px) {
            .hero-buttons {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 639px) {
            .hero {
                padding-top: 78px;
            }

            .hero-grid {
                gap: 1.5rem;
            }

            .hero h1 {
                font-size: clamp(1.85rem, 8.2vw, 2.4rem);
                margin-bottom: 1rem;
            }

            .hero-subtitle {
                font-size: clamp(0.92rem, 3.4vw, 1rem);
                max-inline-size: 30ch;
                margin-bottom: 1.2rem;
                min-block-size: calc(1.45em * 2);
            }

            .hero-buttons {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 0.55rem;
                margin-bottom: 1.25rem;
                max-width: min(100%, 560px);
            }

            .hero-buttons .btn {
                padding: 0.72rem 0.55rem;
                font-size: 0.82rem;
                min-height: 50px;
                border-radius: 12px;
            }

            .hero-buttons .btn .btn-label {
                font-size: 0.8rem;
                line-height: 1.25;
            }

            .hero-buttons .btn .btn-icon {
                width: 1.65rem;
                height: 1.65rem;
            }

            .hero-buttons .btn .btn-icon svg {
                width: 15px;
                height: 15px;
            }
        }

        @media (min-width: 1024px) {
            .hero-subtitle {
                margin-inline: 0;
                max-inline-size: 58ch;
            }

            .hero-buttons {
                justify-content: flex-start;
                margin-inline: 0;
                max-width: 560px;
            }
        }

        .hero-trust {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            justify-content: center;
            opacity: 0;
            animation: fadeInUp 0.6s ease 0.4s forwards;
            animation-play-state: var(--hero-anim-state);
        }

        @media (min-width: 1024px) {
            .hero-trust {
                justify-content: flex-start;
            }
        }

        .hero-avatars {
            display: flex;
        }

        .hero-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--telda), var(--telda-dark));
            border: 2px solid white;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.75rem;
            font-weight: 700;
            margin-right: -8px;
        }

        .hero-visual {
            position: relative;
            opacity: 0;
            transform: translate3d(0, 28px, 0) scale(0.985);
            filter: blur(1.8px);
            animation: heroVisualRise 0.92s cubic-bezier(0.22, 1, 0.36, 1) 1.34s forwards;
            animation-play-state: var(--hero-anim-state);
            will-change: transform, opacity, filter;
            margin-bottom: 23px;
        }

        .phone-mockup {
            position: relative;
            max-width: 320px;
            margin: 0 auto;
        }

        .phone-frame {
            background: linear-gradient(135deg, #0f172a, #0b1b4f);
            border-radius: 40px;
            padding: 12px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }

        .phone-notch {
            position: absolute;
            top: 18px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 24px;
            background: black;
            border-radius: 20px;
            z-index: 10;
        }

        .phone-screen {
            background: linear-gradient(180deg, var(--telda-light), white);
            border-radius: 32px;
            aspect-ratio: 9/19;
            overflow: hidden;
            padding: 1rem;
        }

        .phone-content {
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .phone-header {
            text-align: center;
            padding-top: 2rem;
            margin-bottom: 1rem;
        }

        .phone-logo {
            width: 56px;
            height: 56px;
            background: var(--telda);
            border-radius: 16px;
            margin: 0 auto 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .phone-title {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 0.25rem;
        }

        .phone-subtitle {
            font-size: 0.75rem;
            color: var(--muted-foreground);
        }

        .phone-items {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .phone-item {
            background: white;
            border-radius: 12px;
            padding: 0.75rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }

        .phone-item-emoji {
            font-size: 1.5rem;
        }

        .phone-item-info {
            flex: 1;
        }

        .phone-item-name {
            font-size: 0.875rem;
            font-weight: 500;
        }

        .phone-item-price {
            font-size: 0.875rem;
            font-weight: 700;
            color: var(--telda);
        }

        .phone-item-add {
            width: 28px;
            height: 28px;
            background: var(--telda);
            border-radius: 50%;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            border: none;
            cursor: pointer;
        }

        .phone-cta {
            background: var(--telda);
            color: white;
            text-align: center;
            padding: 0.875rem;
            border-radius: 12px;
            font-weight: 700;
            margin-top: 1rem;
            box-shadow: 0 4px 6px rgba(59, 130, 246, 0.3);
        }

        /* Scroll indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
        }

        .scroll-indicator svg {
            width: 32px;
            height: 32px;
            color: var(--muted-foreground);
        }

        /* ============================================
           CUSTOMERS SECTION
           ============================================ */
        .customers {
            display: none;
            padding: 1rem 0;
            background: var(--muted);
            overflow: hidden;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--telda-light);
            color: var(--telda-dark);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 500;
            margin-bottom: 1rem;
        }

        .section-title {
            margin-bottom: 1rem;
            color: var(--foreground);
        }

        .section-subtitle {
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .marquee-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            display: flex;
            align-items: center;
            --logo-gap: clamp(1rem, 2vw, 2rem);
            --logo-width: clamp(120px, 15vw, 180px);
            margin-bottom: 2rem;
        }

        .marquee-gradient-right,
        .marquee-gradient-left {
            position: absolute;
            top: 0;
            bottom: 0;
            width: 15%;
            min-width: 60px;
            z-index: 10;
            pointer-events: none;
        }

        .marquee-gradient-left {
            left: 0;
            background: linear-gradient(to right, var(--muted), transparent);
        }

        .marquee-gradient-right {
            right: 0;
            background: linear-gradient(to left, var(--muted), transparent);
        }

        .marquee {
            display: flex;
            width: max-content;
            gap: var(--logo-gap);
            will-change: transform;
            animation: marquee-loop var(--scroll-duration, 20s) linear infinite;
        }

        .marquee-container:hover .marquee {
            animation-play-state: paused;
        }

        .marquee-group {
            display: flex;
            flex-shrink: 0;
            gap: var(--logo-gap);
        }

        .customer-card {
            flex-shrink: 0;
            background: var(--card);
            border-radius: var(--radius);
            border: 1px solid var(--border);
            padding: 1rem;
            width: var(--logo-width);
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform var(--transition), box-shadow var(--transition);
        }

        .customer-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        }

        .customer-logo {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .customer-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            display: block;
        }

        .customer-name {
            font-size: 0.875rem;
            font-weight: 500;
            text-align: center;
            white-space: nowrap;
            max-width: 100%;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        @keyframes marquee-loop {
            0% { transform: translateX(var(--from-x, 0)); }
            100% { transform: translateX(var(--to-x, -50%)); }
        }

        @media (prefers-reduced-motion: reduce) {
            .marquee {
                animation: none;
                flex-wrap: wrap;
                width: 100%;
                justify-content: center;
            }
        }

        @media (max-width: 640px) {
            .marquee-gradient-right,
            .marquee-gradient-left {
                width: 56px;
            }

            .customer-card {
                height: 96px;
                padding: 1rem;
            }
        }

        /* Stats */
        .stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        @media (min-width: 768px) {
            .stats {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .stat {
            text-align: center;
        }

        .stat-value {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--telda), var(--telda-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            color: var(--muted-foreground);
            font-size: 0.875rem;
        }

        /* ============================================
           FEATURES SECTION
           ============================================ */
        .features {
            padding: 5rem 0;
        }

        .features-list {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }

        .feature-block {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            align-items: center;
            margin-bottom: 0;
            padding: clamp(1.2rem, 2.2vw, 1.8rem);
            border-radius: 22px;
            border: none;
        }

        .features-list .feature-block:nth-child(odd) {
            background: #ffffff;
        }

        .features-list .feature-block:nth-child(even) {
            background: #eff6ff;
        }

        /* ensure odd blocks explicitly use white to match system design */
        .features-list .feature-block:nth-child(2n+1) {
            background: #f3f4f69c;
        }

        @media (min-width: 1024px) {
            .feature-block {
                grid-template-columns: 1fr 1fr;
                gap: 4rem;
            }

            .feature-block:nth-child(even) .feature-content {
                order: 2;
            }
        }

        .feature-icon {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .feature-icon svg {
            width: 28px;
            height: 28px;
        }

        .feature-title {
            font-size: 1.75rem;
            margin-bottom: 1rem;
        }

        .feature-desc {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .feature-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .feature-list li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .feature-check {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .feature-check svg {
            width: 14px;
            height: 14px;
        }

        .feature-visual {
            position: relative;
        }

        .feature-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 1.5rem;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 50%;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), transparent);
            pointer-events: none;
        }

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

        .feature-card-title {
            font-weight: 700;
        }

        .feature-card-subtitle {
            font-size: 0.875rem;
            color: var(--muted-foreground);
        }

        .feature-card-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .feature-stat {
            text-align: center;
            padding: 0.75rem;
            background: var(--muted);
            border-radius: 12px;
        }

        .feature-stat-value {
            font-size: 1.25rem;
            font-weight: 700;
        }

        .feature-stat-label {
            font-size: 0.75rem;
            color: var(--muted-foreground);
        }

        .feature-stat-change {
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--telda);
        }

        .feature-card-list {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .feature-card-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem;
            background: var(--muted);
            border-radius: 12px;
        }

        .feature-card-item-name {
            font-size: 0.875rem;
            font-weight: 500;
        }

        .feature-card-item-value {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.875rem;
        }

        .trend-up { color: var(--telda); }
        .trend-down { color: #1e40af; }

        /* Branch Management Visual */
        .branch-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem;
            background: var(--muted);
            border-radius: 12px;
            margin-bottom: 0.5rem;
        }

        .branch-info {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .branch-name {
            font-size: 0.875rem;
            font-weight: 500;
        }

        .branch-status {
            font-size: 0.75rem;
            padding: 0.25rem 0.75rem;
            border-radius: 50px;
        }

        .branch-open {
            background: rgba(59, 130, 246, 0.1);
            color: var(--telda);
        }

        .branch-closed {
            background: rgba(30, 64, 175, 0.12);
            color: #1e40af;
        }

        .branch-orders {
            font-size: 0.875rem;
            font-weight: 700;
        }

        /* Loyalty Visual */
        .loyalty-card {
            background: linear-gradient(135deg, var(--telda-light), white);
            border-radius: 16px;
            padding: 1rem;
            margin-bottom: 1rem;
        }

        .loyalty-user {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
        }

        .loyalty-avatar {
            width: 48px;
            height: 48px;
            background: var(--telda);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
        }

        .loyalty-name {
            font-weight: 700;
        }

        .loyalty-tier {
            font-size: 0.75rem;
            color: var(--muted-foreground);
        }

        .loyalty-progress {
            background: white;
            border-radius: 12px;
            padding: 0.75rem;
        }

        .loyalty-progress-header {
            display: flex;
            justify-content: space-between;
            font-size: 0.875rem;
            margin-bottom: 0.5rem;
        }

        .loyalty-progress-bar {
            height: 8px;
            background: var(--muted);
            border-radius: 4px;
            overflow: hidden;
        }

        .loyalty-progress-fill {
            height: 100%;
            background: var(--telda);
            border-radius: 4px;
            width: 75%;
        }

        .loyalty-cashback {
            text-align: center;
            font-size: 0.875rem;
            color: var(--muted-foreground);
        }

        .loyalty-cashback span {
            font-weight: 700;
            color: var(--telda);
        }

        /* Ordering Methods Visual */
        .order-method {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.75rem;
            background: var(--muted);
            border-radius: 12px;
            margin-bottom: 0.5rem;
        }

        .order-method-icon {
            font-size: 1.5rem;
        }

        .order-method-info {
            flex: 1;
        }

        .order-method-name {
            font-size: 0.875rem;
            font-weight: 500;
        }

        .order-method-time {
            font-size: 0.75rem;
            color: var(--muted-foreground);
        }

        .order-method-radio {
            width: 20px;
            height: 20px;
            border: 2px solid var(--telda);
            border-radius: 50%;
        }

        /* Chatbot Visual */
        .chat-bubble-user {
            background: var(--muted);
            border-radius: 16px;
            border-bottom-right-radius: 4px;
            padding: 0.75rem;
            max-width: 80%;
            margin-bottom: 0.75rem;
            font-size: 0.875rem;
        }

        .chat-bubble-bot {
            background: var(--telda-light);
            border-radius: 16px;
            border-bottom-left-radius: 4px;
            padding: 0.75rem;
            max-width: 80%;
            margin-right: auto;
            font-size: 0.875rem;
            color: var(--telda-dark);
        }

        /* Speed Visual */
        .speed-visual {
            text-align: center;
            padding: 2rem 0;
        }

        .speed-icon-text {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .speed-icon-text svg {
            width: 32px;
            height: 32px;
            color: var(--telda);
        }

        .speed-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--telda-light);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            margin-bottom: 1rem;
        }

        .speed-badge-text {
            font-size: 0.875rem;
            color: var(--telda-dark);
        }

        .speed-badge-value {
            font-weight: 700;
            color: var(--telda);
        }

        .speed-dots {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
        }

        .speed-dot {
            width: 12px;
            height: 12px;
            background: var(--telda);
            border-radius: 50%;
            animation: bounce 1.5s infinite;
        }

        .speed-dot:nth-child(2) { animation-delay: 0.2s; }
        .speed-dot:nth-child(3) { animation-delay: 0.4s; }
        .speed-dot:nth-child(4) { animation-delay: 0.6s; }
        .speed-dot:nth-child(5) { animation-delay: 0.8s; }

        /* ============================================
           PRICING SECTION
           ============================================ */
        .pricing-section {
            --pricing-shell-border: #cdddf8;
            --pricing-card-border: #d5e3fb;
            --pricing-row-border: #d8e6fd;
            --pricing-row-border-hover: #a8c8f8;
            --pricing-text: #1b3f79;
            --pricing-soft-surface: #f7fbff;
            --pricing-ease: cubic-bezier(0.22, 1, 0.36, 1);
            position: relative;
            padding-block: clamp(4rem, 9vw, 5.6rem);
            background: linear-gradient(180deg, #ffffff 0%, #eef5ff 46%, #ffffff 100%);
            overflow: hidden;
            isolation: isolate;
        }

        .pricing-section::before {
            content: '';
            position: absolute;
            width: min(76vw, 760px);
            height: min(76vw, 760px);
            inset-inline-end: -16%;
            top: -46%;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(147, 197, 253, 0.45) 0%, rgba(147, 197, 253, 0) 70%);
            pointer-events: none;
            z-index: -1;
        }

        .pricing-section .pricing-shell {
            max-width: 860px;
            margin: 0 auto;
            padding: clamp(1.1rem, 3vw, 2rem);
            border-radius: 30px;
            border: 1px solid var(--pricing-shell-border);
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(243, 248, 255, 0.98) 100%);
            box-shadow: 0 24px 42px rgba(15, 39, 92, 0.12);
        }

        .pricing-section .pricing-header {
            text-align: center;
            margin-bottom: 1.4rem;
        }

        .pricing-section .pricing-title {
            margin: 0;
            font-size: clamp(1.8rem, 4vw, 2.45rem);
            color: var(--brand-blue-900);
            letter-spacing: -0.01em;
        }

        .pricing-section .pricing-card {
            border: 1px solid var(--pricing-card-border);
            border-radius: 22px;
            background: #ffffff;
            box-shadow: 0 16px 34px rgba(30, 58, 138, 0.08);
            padding: clamp(1rem, 2.7vw, 1.65rem);
            overflow: hidden;
            transition: box-shadow 0.24s ease, transform 0.24s var(--pricing-ease);
        }

        @media (hover: hover) {
            .pricing-section .pricing-card:hover {
                transform: translateY(-2px);
                box-shadow: 0 20px 36px rgba(30, 58, 138, 0.14);
            }
        }

        .pricing-section .pricing-card-header {
            margin: 0 0 1.1rem;
            font-size: clamp(1.1rem, 2.7vw, 1.48rem);
            color: var(--brand-blue-900);
            line-height: 1.45;
            text-align: center;
        }

        .pricing-section .pricing-feature-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: grid;
            gap: 0.62rem;
        }

        .pricing-section .pricing-feature-row {
            display: flex;
            align-items: center;
            gap: 0.7rem;
            padding: 0.68rem 0.78rem;
            border-radius: 14px;
            border: 1px solid var(--pricing-row-border);
            background: linear-gradient(180deg, #ffffff 0%, var(--pricing-soft-surface) 100%);
            transition: transform 0.2s var(--pricing-ease), border-color 0.2s ease, box-shadow 0.2s ease;
        }

        @media (hover: hover) {
            .pricing-section .pricing-feature-row:hover {
                transform: translateY(-1px);
                border-color: var(--pricing-row-border-hover);
                box-shadow: 0 8px 16px rgba(37, 99, 235, 0.12);
            }
        }

        .pricing-section .pricing-feature-dot {
            width: 0.62rem;
            height: 0.62rem;
            border-radius: 50%;
            flex-shrink: 0;
            background: linear-gradient(135deg, var(--brand-blue-400), var(--brand-blue-700));
            box-shadow: 0 0 0 5px rgba(59, 130, 246, 0.12);
        }

        .pricing-section .pricing-feature-text {
            color: var(--pricing-text);
            font-size: 0.94rem;
            font-weight: 600;
            line-height: 1.55;
        }

        .pricing-section .pricing-cta-wrap {
            margin-top: 1.25rem;
            display: flex;
            justify-content: center;
        }

        .pricing-section .pricing-cta-btn {
            min-width: min(100%, 240px);
            border-radius: 14px;
            padding: 0.95rem 1.4rem;
            font-size: 1rem;
            box-shadow: 0 14px 26px rgba(29, 78, 216, 0.22);
        }

        .pricing-section .pricing-cta-btn:hover {
            box-shadow: 0 18px 30px rgba(29, 78, 216, 0.3);
        }

        @media (prefers-reduced-motion: reduce) {
            .pricing-section .pricing-card,
            .pricing-section .pricing-feature-row,
            .pricing-section .pricing-cta-btn {
                transition: none;
            }
        }

        @media (max-width: 767px) {
            .pricing-section {
                padding-block: 4rem;
            }

            .pricing-section .pricing-shell {
                border-radius: 22px;
                padding: 0.9rem;
            }

            .pricing-section .pricing-card {
                border-radius: 18px;
                padding: 0.95rem;
            }

            .pricing-section .pricing-cta-btn {
                width: 100%;
            }
        }

        /* ============================================
           CONTACT SECTION
           ============================================ */
        .contact-section {
            padding: 5rem 0;
            position: relative;
        }

        .contact-shell {
            border-radius: 28px;
            overflow: hidden;
            border: 1px solid #bfdbfe;
            background: linear-gradient(0deg, #fcfcfc 0%, rgba(59, 130, 246, 0.18) 100%);
            box-shadow: 0 20px 40px rgba(30, 58, 138, 0.16);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr;
            background: linear-gradient(0deg, #fcfcfc 0%, rgba(59, 130, 246, 0.18) 100%);
        }

        @media (min-width: 992px) {
            .contact-grid {
                grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
            }
        }

        .contact-visual-pane {
            position: relative;
            min-height: 360px;
            background: linear-gradient(0deg, #fcfcfc 0%, rgba(59, 130, 246, 0.18) 100%);
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .contact-visual-pane::after {
            content: none;
        }

        .contact-phone-stage {
            position: relative;
            width: min(330px, 80%);
            aspect-ratio: 1 / 1;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: contactPhoneFloat 4.4s cubic-bezier(0.22, 1, 0.36, 1) infinite;
        }

        .contact-phone-stage::before {
            content: '';
            position: absolute;
            inset: 18%;
            border-radius: 50%;
            background: linear-gradient(0deg, #fcfcfc 0%, rgba(59, 130, 246, 0.18) 100%);
            filter: blur(1px);
        }

        .contact-phone-stage::after {
            content: '';
            position: absolute;
            inset: 8%;
            border-radius: 50%;
            border: 1px dashed rgba(59, 130, 246, 0.24);
            animation: contactHaloSpin 14s linear infinite;
        }

        .contact-phone-ring {
            position: absolute;
            border-radius: 999px;
            border: 1.8px solid rgba(59, 130, 246, 0.3);
            background:  linear-gradient(0deg, #fcfcfc 0%, rgba(59, 130, 246, 0.18) 100%);
            inset: 20%;
            animation: contactPhoneRing 3.2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
        }

        .contact-phone-ring-2 {
            inset: 6%;
            animation-delay: 1.2s;
        }

        .contact-phone-core {
            position: relative;
            width: min(168px, 56%);
            aspect-ratio: 1 / 1;
            border-radius: 999px;
            background:     linear-gradient(145deg, #1d4ed8 0%, #3b82f6 55%, #93c5fd 100%);
            box-shadow: 0 20px 40px rgba(37, 99, 235, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.36);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            animation: contactPhoneCoreTilt 3.2s ease-in-out infinite;
        }

        .contact-phone-core::after {
            content: '';
            position: absolute;
            inset: 18%;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.32);
        }

        .contact-phone-core svg {
            width: 50%;
            height: 50%;
            transform: rotate(-15deg);
            filter: drop-shadow(0 4px 10px rgba(30, 58, 138, 0.3));
            animation: contactHandsetPulse 3.2s ease-in-out infinite;
        }

        .contact-mini-icon {
            position: absolute;
            width: 54px;
            height: 54px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2563eb;
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(250, 245, 255, 0.92));
            border: 1px solid rgba(147, 197, 253, 0.5);
            box-shadow: 0 14px 24px rgba(30, 58, 138, 0.22);
            animation-duration: 4.8s;
            animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
            animation-iteration-count: infinite;
        }

        .contact-mini-icon svg {
            width: 22px;
            height: 22px;
        }

        .contact-mini-icon-location {
            top: 16%;
            inset-inline-start: 10%;
            animation-name: contactMiniOrbitA;
        }

        .contact-mini-icon-chat {
            bottom: 14%;
            inset-inline-end: 10%;
            animation-name: contactMiniOrbitB;
            animation-delay: 0.35s;
        }

        .contact-mini-icon-clock {
            top: 18%;
            inset-inline-end: 16%;
            animation-name: contactMiniOrbitC;
            animation-delay: 0.7s;
        }

        @keyframes contactPhoneFloat {
            0%,
            100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        @keyframes contactHaloSpin {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        @keyframes contactPhoneCoreTilt {
            0%,
            100% {
                transform: rotate(-8deg);
            }
            50% {
                transform: rotate(8deg);
            }
        }

        @keyframes contactHandsetPulse {
            0%,
            100% {
                transform: rotate(-15deg) scale(1);
            }
            50% {
                transform: rotate(-11deg) scale(1.07);
            }
        }

        @keyframes contactPhoneRing {
            0% {
                transform: scale(0.62);
                opacity: 0.74;
            }
            55% {
                opacity: 0.2;
            }
            100% {
                transform: scale(1.24);
                opacity: 0;
            }
        }

        @keyframes contactMiniOrbitA {
            0%,
            100% {
                transform: translate(0, 0) scale(1);
            }
            50% {
                transform: translate(8px, -10px) scale(1.04);
            }
        }

        @keyframes contactMiniOrbitB {
            0%,
            100% {
                transform: translate(0, 0) scale(1);
            }
            50% {
                transform: translate(-8px, -8px) scale(1.03);
            }
        }

        @keyframes contactMiniOrbitC {
            0%,
            100% {
                transform: translate(0, 0) scale(1);
            }
            50% {
                transform: translate(6px, 7px) scale(1.03);
            }
        }

        .contact-form-pane {
            padding: 2rem;
            background: linear-gradient(0deg, #fcfcfc 0%, rgba(59, 130, 246, 0.18) 100%);
            display: flex;
            flex-direction: column;
            justify-content: center;
            text-align: start;
            font-family: 'Alexandria', 'Outfit', sans-serif;
        }

        .contact-title {
            color: #1d4ed8;
            margin-bottom: 0.7rem;
        }

        .contact-subtitle {
            color: #36507d;
            font-size: 1.02rem;
            margin-bottom: 1.35rem;
            max-width: 45ch;
        }

        .contact-actions {
            display: grid;
            gap: 0.7rem;
            margin-bottom: 1rem;
        }

        @media (min-width: 640px) {
            .contact-actions {
                grid-template-columns: 1fr 1fr;
            }
        }

        .contact-actions.is-hidden {
            display: none;
        }

        .contact-actions .btn,
        .contact-form-actions .btn {
            width: 100%;
            min-height: 50px;
            border-radius: 14px;
            font-weight: 700;
            gap: 0.5rem;
        }

        .contact-form-pane .btn-primary {
            color: #ffffff;
            background: linear-gradient(135deg, #1d4ed8, #2563eb);
            box-shadow: 0 12px 24px rgba(29, 78, 216, 0.28);
        }

        .contact-form-pane .btn-primary:hover {
            background: linear-gradient(135deg, #1e40af, #2563eb);
            box-shadow: 0 16px 28px rgba(29, 78, 216, 0.34);
        }

        .contact-form-pane .btn-white {
            border: 1px solid #bfdbfe;
            background: #ffffff;
            color: #1e40af;
            box-shadow: 0 10px 20px rgba(30, 58, 138, 0.14);
        }

        .contact-form-pane .btn-white:hover {
            border-color: #2563eb;
            background: #eff6ff;
            color: #1e3a8a;
        }

        .contact-back-btn {
            border-color: #bfdbfe;
            color: #1d4ed8;
            background: #ffffff;
        }

        .contact-back-btn:hover {
            border-color: #2563eb;
            color: #1e3a8a;
            box-shadow: 0 10px 18px rgba(30, 58, 138, 0.12);
        }

        .contact-form {
            display: grid;
            gap: 0.7rem;
            margin-bottom: 0.6rem;
        }

        .contact-form.is-hidden {
            display: none;
        }

        .contact-contact-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.7rem;
        }

        .contact-input {
            height: 48px;
            border-radius: 12px;
            border: 1px solid #bfdbfe;
            background: #ffffff;
            color: #0f172a;
            font-size: 0.95rem;
            padding: 0 0.9rem;
            outline: none;
            transition: border-color 0.22s ease, box-shadow 0.22s ease;
        }

        .contact-input:focus {
            border-color: #2563eb;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
        }

        .contact-form-actions {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.7rem;
            margin-top: 0.15rem;
        }

        .contact-feedback {
            min-height: 1.3rem;
            color: #1e40af;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .contact-note {
            color: #36507d;
            font-size: 0.86rem;
            margin-top: 0.25rem;
        }

        @media (max-width: 991px) {
            .contact-section {
                padding: 4rem 0;
            }

            .contact-shell {
                border-radius: 22px;
            }

            .contact-form-pane {
                padding: 1.4rem;
            }

            .contact-subtitle {
                font-size: 0.97rem;
            }
        }

        @media (max-width: 640px) {
            .contact-contact-row,
            .contact-form-actions {
                grid-template-columns: 1fr;
            }

            .contact-phone-stage {
                width: min(280px, 86%);
            }

            .contact-mini-icon {
                width: 44px;
                height: 44px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .contact-phone-stage,
            .contact-phone-stage::after,
            .contact-phone-core,
            .contact-phone-core svg,
            .contact-phone-ring,
            .contact-mini-icon {
                animation: none !important;
            }
        }

        @media (max-width: 767px) {
            .contact-visual-pane {
                display: none;
            }

            .contact-form-pane {
                min-height: auto;
            }

            .feature-block {
                border: 1px solid rgba(226, 232, 240, 0.9);
            }
        }

        /* ============================================
           FOOTER
           ============================================ */
        .footer {
            color: white;
            padding: 4rem 0 2rem;
            background: linear-gradient(145deg, #0b1b4f, #1e3a8a);
            border-radius: 15px;
            margin:40px 10px;
         
        }

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

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

        .footer-brand p {
            color: #9CA3AF;
            margin-top: 1rem;
            line-height: 1.7;
        }

        .footer-social {
            display: flex;
            gap: 0.85rem;
            margin-top: 1.5rem;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            background: #1e3a8a;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #dbeafe;
            transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
        }

        .footer-social a:hover {
            transform: translateY(-2px);
        }

        .footer-social .social-facebook:hover {
            background: #1877f2;
            color: #ffffff;
        }

        .footer-social .social-instagram:hover {
            background: #2563eb;
            color: #ffffff;
        }

        .footer-social .social-whatsapp:hover {
            background: #3b82f6;
            color: #ffffff;
        }

        .footer-social svg {
            width: 20px;
            height: 20px;
        }

        .footer-title {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .footer-links a {
            color: #9CA3AF;
            transition: color 0.2s ease, transform 0.2s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-links a:hover {
            color: white;
            transform: translateX(-2px);
        }

        .footer-links svg {
            width: 16px;
            height: 16px;
        }

        .footer-bottom {
            border-top: 1px solid #0f172a;
            padding-top: 2rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            align-items: center;
        }

        @media (min-width: 768px) {
            .footer-bottom {
                flex-direction: row;
                justify-content: space-between;
            }
        }

        .footer-copyright {
            color: #9CA3AF;
            font-size: 0.875rem;
        }

        .footer-legal {
            display: flex;
            gap: 1.5rem;
        }

        .footer-legal a {
            color: #9CA3AF;
            font-size: 0.875rem;
            transition: color 0.2s ease;
        }

        .footer-legal a:hover {
            color: white;
        }

        /* ============================================
           ANIMATIONS
           ============================================ */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        @keyframes bounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        @keyframes marquee-loop {
            from {
                transform: translate3d(var(--from-x), 0, 0);
            }
            to {
                transform: translate3d(var(--to-x), 0, 0);
            }
        }

        /* Scroll animations */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(22px) scale(0.99);
            filter: blur(1.4px);
            transition: opacity 0.82s cubic-bezier(0.22, 1, 0.36, 1), transform 0.82s cubic-bezier(0.22, 1, 0.36, 1), filter 0.82s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
            filter: blur(0);
        }




