
        /* Prevent double-tap zoom on mobile — improves navigation comfort */
        * {
            touch-action: manipulation;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background-color: #F0F4F8;
            color: #1A1A1A;
            -webkit-tap-highlight-color: transparent;
        }

        .glass-card {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-radius: 1.5rem;
            box-shadow: 0 10px 40px -10px rgba(14, 59, 131, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.5);
        }

        .input-premium {
            background: #F8FAFC;
            border: 1px solid #E2E8F0;
            border-radius: 1rem;
            transition: all 0.2s;
        }

        .input-premium:focus {
            border-color: #0E3B83;
            box-shadow: 0 0 0 4px rgba(14, 59, 131, 0.1);
            outline: none;
            background: #FFFFFF;
        }

        .btn-primary {
            background: #0E3B83;
            color: #FFFFFF;
            border-radius: 1rem;
            font-weight: 700;
            transition: all 0.2s;
            box-shadow: 0 8px 20px -6px rgba(14, 59, 131, 0.4);
        }

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

        .nav-link {
            border-radius: 1rem;
            color: rgba(255, 255, 255, 0.6);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-link:active {
            transform: scale(0.95);
        }

        .nav-link.active {
            background: #F6C119;
            color: #0E3B83;
            font-weight: 800;
            box-shadow: 0 4px 15px rgba(246, 193, 25, 0.3);
        }

        /* Hide scrollbar for clean mobile look */
        ::-webkit-scrollbar {
            width: 0px;
            background: transparent;
        }

        /* Mobile-First Tables */
        @media (max-width: 1024px) {

            .card-table,
            .card-table tbody,
            .card-table tr,
            .card-table td {
                display: block;
                width: 100%;
            }

            .card-table thead {
                display: none;
            }

            .card-table tr {
                margin-bottom: 1.25rem;
                background: #fff;
                border-radius: 1.25rem;
                padding: 1.25rem;
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
                border: 1px solid #F1F5F9;
            }

            .card-table td {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 0.875rem 0;
                border-bottom: 1px solid #F8FAFC;
                text-align: right;
            }

            .card-table td:last-child {
                border-bottom: none;
                padding-bottom: 0;
            }

            .card-table td:first-child {
                padding-top: 0;
            }

            .card-table td::before {
                content: attr(data-label);
                font-weight: 700;
                color: #94A3B8;
                font-size: 0.7rem;
                text-transform: uppercase;
                letter-spacing: 0.05em;
            }

            .mobile-col {
                flex-direction: column !important;
            }

            .mobile-order-1 {
                order: 1;
            }

            .mobile-order-2 {
                order: 2;
            }
        }

        .view-section {
            animation: fadeUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes popIn {
            0% {
                transform: scale(0.95);
                opacity: 0;
            }

            50% {
                transform: scale(1.02);
            }

            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        .pop-in {
            animation: popIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        /* iOS Safe Area Padding */
        .pb-safe {
            padding-bottom: env(safe-area-inset-bottom, 20px);
        }

        /* ── Select con identidad visual Chihtsai ── */
        select.input-premium {
            appearance: none;
            -webkit-appearance: none;
            background-color: #F8FAFC;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%230E3B83' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 0.9rem center;
            background-size: 1.1em;
            padding-right: 2.5rem;
            cursor: pointer;
        }

        select.input-premium:focus {
            border-color: #0E3B83;
            box-shadow: 0 0 0 4px rgba(14, 59, 131, 0.1);
            outline: none;
            background-color: #FFFFFF;
        }

        select.input-premium option {
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            color: #0E3B83;
            background: #FFFFFF;
            padding: 8px;
        }

        select.input-premium option:first-child {
            color: #94A3B8;
            font-weight: 500;
        }

        select.input-premium option:checked {
            background: #0E3B83;
            color: #F6C119;
        }
    